Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Have you asked this to your theme’s vendors?
According to Chrome’s Element inspector you need to modify the #tagline definition on line #943 of your style.css file.
Hope that helps
-greg
Thanks for the responses.
I tried adding a font size code to the lines in the style sheet with “tagline” in them [there are 2]. It didn’t work. What code should I be using?
This is where you’d want to change it:
#tagline {
color: #E15B2C;
font-size: 10px;
line-height: 1.2em;
margin: 0 20px 35px 11px;
text-align: center;
}
Did you try clearing your browser cache after the change?
I’ve looked at quite a few sites since you posted this… So I can’t remember for sure, but the font looks significantly smaller than when I last saw it. The changes you made may not be showing on your machine because you need to empty your cache and refresh the page.
I’m seeing a 10px sized font for the tagline, so it looks like you did everything correctly 🙂
I emptied the cache and it seems to be working now, thanks!!
One more question – how can I center the tagline underneath the logo? Is there a way to do that?
Adjust the margins in the CSS I posted above — a great tool for working with CSS is Firebug — as you can look at the CSS and make temporary changes in your browser — before making them on the actual site.