Forums

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

Home Forums CSS [Solved] Menu Padding Problems

  • This topic is empty.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #162056

    Can someone please tell me what is pushing the menu to the right. I have to duplicate a design exacting in a wordpress theme and I just can’t get the menu to cooperate. (http://tcf.4bco.com/attorney-advertising/ “”) Thanks for any and all help!

    #162058
    Soren
    Participant

    It’s the UL’s padding (padding-left) inside the div “menu-sidebar-container”.

    <ul id="menu-sidebar" class="menu">
    

    Give this UL padding-left: 0; or set all padding/margin to 0 (removes the UL default values)

    .offending-ul { 
      margin: 0; 
      padding: 0; 
    }
    
    #162065

    Thanks! Don’t know how I missed that… Thought I had already changed it :S Guess I had just looked at it too long… LOL

    #162067
    Soren
    Participant

    :) i know that feeling. i was going to say the answer is already in your question.

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