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.
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;
}
}