Kiki theme title not responsive

Hi!
Does anyone have any advice on how to make the title of my RW Kiki theme page responsive on a mobile device?
The title appears on a normal browser screen but not on a mobile phone (I guess because the text doesn’t scale).
The site is:
www.ecospiriting.com
The title part is “Online Counselling, Coaching & Ecotherapy”. On a phone, I don’t see this title.

Thanks!!

Thanks @ings

That theme is intended for a logo image set in RW settings and will scale that way. For the text add a little CSS snippet to your site’s site wide CSS, something like:

    #title small {
    font-size: 1.4rem;
    }

    @media (max-width: 767px) and (min-width: 448px) {
     hidden-sm {
         display: block !important;
      } 
}

And the result will be something like this:

From there, you can then tweak the text sizes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.