• Resolved metals

    (@metals)


    Hi All,
    Im a newbie so please take care.
    After searching and trying a heap of stuff i cant seem to centre my titles on each page,
    my website is https://www.aussievelos.net
    im trying to center each of the tabs titles and ive tried numerous things in my .css but to no avail

    Can anyone point me in the right direction or what im doing wrong.

    thanks in anticipation
    metals

Viewing 4 replies - 1 through 4 (of 4 total)
  • By tabs I assume you mean the menu items?

    This should center the menu items and text

    #access {
    	text-align:center;
    }
    #access ul {
        display:inline-block;
        *display: inline; /* For IE7 */
        *zoom:1; /* For IE7 */
        vertical-align:top;
    }
    #access ul ul {
     text-align: left;
    }
    #access div {
    	margin: 0;
    }

    HTH

    David

    Thread Starter metals

    (@metals)

    Hi David
    thanks for your reply

    I added that code into my style.css but it didn’t work,
    (I hope that is what im meant to do)

    My page titles on each page are still to the left ( I hope i explained myself correctly)

    metals

    Hi,
    I read it wrong you mean the page titles?

    .entry-title {
        text-align: center;
     }

    You should make any changes using a child theme, you risk loosing changes on theme version update if you edit the default themes.

    HTH

    David

    Thread Starter metals

    (@metals)

    thank-you thank-you very much
    Works a treat David

    kind regards
    metals

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘centering titles on site’ is closed to new replies.