sacredpath
(@sacredpath)
Automattic Happiness Engineer
Which titles are you wanting to change the size on? Many times the selector needs to be more specific on font size changes than on color changes.
Your site is giving me a Forbidden error, so I can’t see it, but I might be able to work off the demo site to point you in the right direction if I know which title(s).
Thread Starter
freatz
(@freatz)
Hi there!
Thank you for answering me!
I’m talking about the h2 titles, the titles of the widgets.
sacredpath
(@sacredpath)
Automattic Happiness Engineer
This would be for the footer widget area.
.footer-widget-area .widget-title {
color: #cc0000;
font-size: 1.4rem;
}
And this for the sidebar and front widget area.
.front-widget-area .widget-title, .sidebar-widget-area .widget-title {
color: #3333dd;
font-size: 1.4rem;
}
Thread Starter
freatz
(@freatz)
Hey!
I don’t know if I explained myself very well (my English is not the best), but the code you gave me didn’t work. But you gave me an idea, and what worked was this:
.widget-title {
font-weight: bold;
font-size: 2.0rem;
font-size: 20px;
}
Thank you very much!!!
sacredpath
(@sacredpath)
Automattic Happiness Engineer
Awesome, and you are welcome!