• The Ink theme I’m using is supposed to be responsive. The url I have is smalltowntexas.kut.org.

    You can see that the theme is not responsive if you pull up the site on mobile — we’ve tried with iphones only, using safari & chrome, and it has not worked. The main title header is wrong.

    I’m not sure what’s the best way to get help with this. If anyone has any experience let me know!

Viewing 8 replies - 1 through 8 (of 8 total)
  • Your site looks fine on my iPhone. What specifically is wrong with the main title header?

    Thread Starter emutert

    (@emutert)

    Well that’s good news! What iphone & browser are you using?

    Can you see the screenshot here? https://www.dropbox.com/s/gwrj6jzaz0pcy5p/IMG_2092.PNG?dl=0

    Not sure if I have the share settings correct.

    But essentially the main title/header is superimposed over the post title. Looks like a mess on my device and two of my coworkers’.

    Thread Starter emutert

    (@emutert)

    Are you looking at it horizontally or vertically?

    After looking at your screenshot, I see what the issue is. I’m looking at it on an iPhone 6 Plus, which explains it.

    If your theme has a built-in custom CSS option, use it; otherwise, get a custom CSS plugin and put:

    @media screen and (max-width: 649px) {
      .site-title {
        font-size: 26px;
      }
    }

    This code will make your site title smaller, only if the browser is a maximum of 649 pixels wide.

    Thread Starter emutert

    (@emutert)

    Cool. Could I do percentage max width instead of pixel? I’m kind of a novice sorry.

    You could set a maximum width on the site title’s containing element, but you’d probably still want to change the font size so the title itself doesn’t overflow the container.

    @media screen and (max-width: 649px) {
      .site-branding {
        max-width: 75%;
      }
    
      .site-title {
        font-size: 26px;
      }
    }
    Thread Starter emutert

    (@emutert)

    Great, thank you. Going to try this!

    Thread Starter emutert

    (@emutert)

    fixed it right up, ty

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘"Ink" responsive theme not being responsive’ is closed to new replies.