Jump to content

[SOLVED] how to change the color of home bar?


Recommended Posts

to change main background of first item (menu bar) you have to modify background param in:

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

it's a /modules/blocktopmenu/css/superfish-modified.css file

 

 

to cange background of sub-items:

qTZqgwV.png

 

you have to modify background param in:

.sf-menu li li {
background: rgba(113, 113, 113, 0.9);
}

and

.sf-menu li li li {
background: rgba(113, 113, 113, 0.9);
}

(the same file)

Link to comment
Share on other sites

 

Using the rule vekia suggested, you can try

.sf-menu li a {
color: white
}

I can't find this place, I only find 

sf-menu a {

    display:        block;

    position:        relative;

    color:#fff;

    text-shadow:0 1px 0 #333;

I change the color to #000000, but it doesn't work

Link to comment
Share on other sites

×
×
  • Create New...