Increase Widget Title Font
-
OK I tried everything I could think of using CSS to increase the font of the widget titles and can’t figure it out. Would love some help – thank you!
The blog I need help with is: (visible only to logged in users)
-
Have you tried adding the following to your Custom CSS?
.wf-active #secondary .widget-title {
font-size: 20px;
font-weight: 400;
} -
Ah PERFECTION! Thank you!
While I have you – I have one other problem that I’m trying to fix. When I add “CT” to my site title it bumps onto another line. Is there a way to make it so that it all stays on one line?
-
Glad it worked for you. Adding CT to your title is a bit more work.
There’s a “header-auxiliary” section to the right of the Site Title that is currently hidden using
display: nonein the CSS.Expanding the Site Title to a wider width will cause that section to drop below your Site Title, adding a lot of space between the Site Title and your navigation.
On possible solution for you is to increase the width for the Site Title and decrease the width for the header auxiliary section. Here’s one possible solution:
#header #branding { width: 680px; } #header-auxiliary { width: 200px } -
That worked perfectly as well. Thank you for your fast responses and terrific solutions. Can’t thank you enough.
-
- The topic ‘Increase Widget Title Font’ is closed to new replies.