Tagged: Blog, CSS, enfold, stylesheet, widget title
Hey All,
I’m looking to see if anyone can help me real quick. I’d like to alter the style (color and font) of the Widget Titles used in the side menu. At present I’m using the stock titles (like Categories, Meta, etc) and not creating custom names. I’d also like to ensure altering these titles does not affect the Widget Titles I’m using in my Footer (which are different widgets). Anyone know some quick CSS I can use to accomplish this?
Thanks!
-cameron329
Hey cameron329!
Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed
.widgettitle { font-family: lato; color: red!important; }
Best regards,
Yigit
Hey Yigit,
Thanks for the code, it does indeed work. Is there any way, however, to have this just apply to the widget titles in the Sidebar and NOT the Widget Titles in the footer section?
Thanks for the advice!
Hey!
Sure, please change the code to following one
.sidebar .widgettitle { font-family: lato; color: red!important; }
Best regards,
Yigit
Hey Yigit,
Awesome, thanks very much this is exactly what I needed.
Since we’re on this topic, would you mind telling me the class name for the Titles of Blog Posts so I can adjust those settings as well.
Thanks for all your help!
Hey! :)
Please use following selector
.entry-content-wrapper .post-title { color: red; }
Regards,
Yigit
Perfect. Thanks so much for all your help!