Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #57557
    dodo
    Member

    I can’t seem to center the site title and tagline. I’ve tried things like:

    #logo-wrap {
    text-align:center;
    }

    And it does nothing. How do I center this on high resolutions?

    #57629
    Sakin
    Keymaster

    @dodo: Please post in your site URL so that I can check your site and send you the correct CSS.

    #57665
    dodo
    Member

    Hi, nvm I managed to fix it. If I remember correctly it was this code that I managed to dig up which did the trick:

    #logo-wrap {
    display: block;
    float: none;
    width: 100%;
    text-align: center;
    }

    I also removed the header for everything above 979px width resolution because I like having the site title in the sidebar instead when the screen is big enough so that the sidebar is visible on the top of the page.


    @media
    screen and (min-width: 979px) {

    #logo-wrap {
    display: none;
    }

    #57759
    Sakin
    Keymaster

    @dodo: That’s nice you fixed it.

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Center site title and tagline’ is closed to new replies.