• Hi there.

    I’m working on a template for a site using wordpress version 3.

    The site can be found here: https://www.derbyshiresmallholders.co.uk

    Username and Password for the site is craig

    I was wondering if anyone can tell me how I could centre the navigation ul list.

    Also, on the sidebar, is there anyway to give the topics under the recent articles list a bullet next to them?

    Thanks so much in advance,

    Craig

Viewing 3 replies - 1 through 3 (of 3 total)
  • Re: centering the navigation list you have:

    #header #menu ul {
    display:inline;
    float:left;
    list-style:none outside none;
    text-align:center;
    }

    The float left is keeping that to the left.

    For your question about the side bar list – again this is a css issue

    #sidebar ul {
    list-style:none outside none;
    margin:0;
    padding:0;
    }

    list-style:none outside none; means no bullets

    Thread Starter craigs85

    (@craigs85)

    Hi there,

    Thanks for replying.

    I took the float left out of the #header #menu ul but its still sticking to the left :(.

    Regarding the #sidebar ul issue, this has added the bullet point next to the header bit (Recent Articles, Upcoming Events and Weather), but not the list beneath the Recent Articles header.

    I can’t work out whats wrong :(.

    Can anyone help?

    Thanks.

    blue robot
    blue robot second method
    try this ^^
    width : x px;
    position : absolute;
    left : 50%;
    margin-left : x/2 ;

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Centered ul navigation’ is closed to new replies.