Site Title & Tagline
-
Hi,
As the Site title is pretty long, is it possible to widen the area for Site Title on larger screen so it does not have to wrap around?
Also, is it possible to hide the tagline on smaller screen?The blog need help is saikungpropertyhk.com
Many thanks.
Virginia
The blog I need help with is: (visible only to logged in users)
-
Hi Virginia,
To make site title area larger, please add this class to Custom CSS:
@media only screen and (min-width: 1025px) { .site-branding { width: 440px; } }
And to hide tagline on smaller screens, please add this class to Custom CSS:
@media only screen and (max-width: 1024px) { .site-description { display: none; } }
Thank you,
– Djordje -
-
Oh, sorry, just one more thing. Is it possible to have a smaller font size for the Site Title on the smaller screen. I just found that the Site Title may takes up 3 rows on smaller screen, so I want to see if changing the font size may help. Thanks a lot!
-
Hi Virginia,
To set smaller font size for the Site Title on the smaller screen, please add this class to Custom CSS:
@media only screen and (max-width: 1024px) { .wf-active .site-title { font-size: 16px; } }
Thank you,
– Djordje -
- The topic ‘Site Title & Tagline’ is closed to new replies.