• I’m trying to get the page links listed on the very top of my website to be centered, but can’t figure out how to do it…any help would be great!

    Thanks!

Viewing 1 replies (of 1 total)
  • Not sure if this is the best way, but if your open style.css in your theme and find the following code:

    div#pages {
    background:black none repeat scroll 0 0;
    height:40px;
    margin:0 auto;
    width:800px;
    }

    Then remove auto from the margin line so it looks like this:

    div#pages {
    background:black none repeat scroll 0 0;
    height:40px;
    margin:0;
    width:800px;
    }

    That seems to do it.

Viewing 1 replies (of 1 total)
  • The topic ‘Need help centering “pages” in header…’ is closed to new replies.