Jump to content

[solved] prestashop v 1.5.4.2 how to edit drop down navigation bar color?


Recommended Posts

Hey all,

just need some help on editing the color of the drop down default theme navigation bar to pink. what i mean is when the mouse is over the nav bar a drop down menu by default theme is grey, i want to change it to pink.... many thanks ....^^

Link to comment
Share on other sites

open the: /modules/blocktopmenu/css/superfish-modified.css file and change background param to pink (or other color you want in HEX format) in the:

 

.sf-menu {
margin: 10px 0;
padding: 0;
width: 980px;
background: pink;
}

 

+

 

.sf-menu li li {
background: pink;
}

 

+

 

.sf-menu li li li {
background: pink;
}

Link to comment
Share on other sites

to change font color:

 

you have to change the color: #fff; value

+ change value of the text-shadow: 0 1px 0 #333;

.sf-menu a {
display: block;
position: relative;
color: #fff;
text-shadow: 0 1px 0 #333;
}

 

in the superfish modified css file.

 

 

I think that also additional modification will be necessary (because all menu links will change color)

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...