Viewing 1 replies (of 1 total)
  • Moderator t-p

    (@t-p)

    Th etop navigation bar is the image. See this CSS element:

    ul.navigation{
    background:#4E4E4E url(images/nav.png) repeat-x left top;
    width:100%;
    padding:0;
    margin:0;
    list-style-type:none;
    position:relative;
    z-index:15;
    }

    Remove url(images/nav.png) repeat-x left top and you will be left with #4E4E4E color (change this color as appropriate) as follows:

    ul.navigation{
    background:#4E4E4E;
    width:100%;
    padding:0;
    margin:0;
    list-style-type:none;
    position:relative;
    z-index:15;
    }
Viewing 1 replies (of 1 total)

The topic ‘Mystique theme navigation bar color’ is closed to new replies.