• On this site I’m developing using a twentyeleven child theme I have a menu at the very top of the page(Home-Services, etc). I want to push the text down a bit but when I do, everything below it pushes down with it including the main menu. Is there a way that I can move that div and list items without it interfering with the rest of the header?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Try adding this to your CSS. I changed it using chrome dev. tools and that seemed to accomplish what you want. Make sure its after any other CSS rules you may have about #top-nav if it is going to override anything…

    If you already have these on your stylesheet, try changing the values to these, so that you dont have unnecessary css in there.

    #top-nav {
        position:absolute;
        right:10px
    }
    #top-nav a {
        padding:1.5em 1.2125em 0.5em;
    }
    Thread Starter tallis

    (@tallis)

    Thanks cmmarslender – that worked

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘padding problem in twentyeleven theme’ is closed to new replies.