Jump to content

Help needed for CSS modifications...


Recommended Posts

Hi Friends,

 

Please find below link to my site... 

 

https://goo.gl/vARG6x

 

  • I wanted to customize the menu so that for each menu hover the colour should be different.... For example currently it's pink for all, I want to make it blue/green for 3rd menu... 
  • In Menu item Women, I want to change the color of Headings like "Designer Suits" to different colors. I tried couple of solutions posted in some threads but couldn't achieve what I wanted.. 
  • Thirdly I need your expert advice for modifying the header part of my site... basically it'll be a clothing site for men and women.

Kindly help.

 

Thanks

Link to comment
Share on other sites

  • I wanted to customize the menu so that for each menu hover the colour should be different.... For example currently it's pink for all, I want to make it blue/green for 3rd menu... 

 

 

 

You can use the following CSS command. The 3 stands for the third li-element. Click here to find out more: https://www.w3schools.com/cssref/sel_nth-child.asp

.wt-menu-horizontal ul li.level-1:nth-child(3):hover > a{background:#FFF;}

 

  • In Menu item Women, I want to change the color of Headings like "Designer Suits" to different colors. I tried couple of solutions posted in some threads but couldn't achieve what I wanted.. 

 

Here you can change the front.css in line 17.

.wt-menu-horizontal ul li.item-header a {color:#FFF !important;}

The !important after the color is important because you have another CSS file that changes the color.

The #FFF can, of course, be replaced by any other color.

 

Many greetings from Germany

Leon

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...