How to remove menu border in Forever theme?

  • I’d like to remove the lines from the menu area below the header. is there something i can just un-click or is there some code i can pop in there? i have the css upgrade.

    thanks!

    The blog I need help with is: (visible only to logged in users)

  • First you need to correct the footer credits: removing the black bg has made them invisible, and that’s against the TOS. You’ve added these two pieces of code:

    #colophon {
        background: none repeat scroll 0 0 #FFFFFF;
        color: #FFFFFF;
    }
    #colophon a {
        color: #FFFFFF;
    }

    Replace the second and third FFFFFF with the hex for the color you prefer.

    As for the menu, if you mean remove the whole menu area including its borders, add this:

    #access {
        display: none;
    }

    If you mean remove the borders only, add this:

    #access {
        border: 0 none;

    }

  • The topic ‘How to remove menu border in Forever theme?’ is closed to new replies.