• Resolved tostrye

    (@tostrye)


    I am trying to build a responsive site. I am using the Bueno theme, and everything is responsive except the site title. It looks like it morphs into two lines, but the size is the same as normal.

    How can I make the site title be responsive?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Make your divs fluid by using percentages width:100% (or whatever percentage you want). You can make CSS changes in media query too so when it is viewed on a mobile device it will change to the new CSS

    @media only screen and (max-width: 481px)
    {
    #title
    {
    width:100%;
    }
    }

    use a @media query to change the font size for smaller screens.

    please post a live link to your site to allow the forum helpers to check the formatting with a browswer inspection tool.

    Thread Starter tostrye

    (@tostrye)

    Ok I got it.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Bueno theme site title not responsive’ is closed to new replies.