• Resolved elonhdar

    (@elonhdar)


    Hi! First of all, Thanks for the great theme! it’s awesome!

    Just got a little bug here, on a small screen, when my title font-size is too big, the title extends out of the page content. If i put width 100%, it splits the name in half to put it on another line.

    What would be my solution for this?

    Also, i can’t figure out how to center the title!

    barilroulant.com (i left it smaller than i want it for now so you shouldn’t see the problem ?? )

    Thanks for the help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter elonhdar

    (@elonhdar)

    ok, posted to quick, i just changed the mediascreen font-size for smaller screen… ??

    still wonder about the centering though!

    Hi,

    I suggest you apply a responsive CSS that would make your logo font smaller on smaller screens. Such as:

    @media only screen and (max-width: 960px) {
     .site-title { font-size: 24px; }
    }
    
    @media only screen and (max-width: 680px) {
     .site-title { font-size: 20px; }
    }
    
    @media only screen and (max-width: 420px) {
     .site-title { font-size: 18px; }
    }
    

    What do you mean by “centering the title”? If you mean by centering the logo in the header, this question has been answered at support.webmandesign.eu already.

    Regards,

    Oliver

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Site Title’ is closed to new replies.