Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Simple Theme CSS modification

  • This topic is empty.
Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #159107
    jrobin747
    Participant

    I am trying hard to change a few things in a theme and I am having trouble.

    I want to change the background of the navbar to #3d3d3d
    I want to change the menu text color Off state to #ffffff and rollover color of the menu text to #6e2c03

    I messed around with the style.css file and nothing changed. I was able to change the background of the pages and that’s it.

    The url of the site I’m working on is http://the-engaged.org

    #159109
    Senff
    Participant

    If you add these declarations to your style.css file, you should get what you want:

    .navbar .container {
        background-color:#3d3d3d;
    }
    
    .navbar .nav>li>a {
        color:#ffffff;
    }
    
    .navbar .nav>li>a:hover {
        color:#6e2c03;
    }
    
    #159116
    Anonymous
    Inactive

    Would you happen to be using a jQuery AJAX plugin? and if yes, whats it called?

    #159119
    shaan1087
    Participant

    No need for (>) ..It would work properly without help of these..

    #159124
    Senff
    Participant

    No need for (>) ..It would work properly without help of these..

    Not if that’s how it’s declared in the main theme and you need to override it.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The forum ‘CSS’ is closed to new topics and replies.