I want a contact us sidebar to have a different coloured title. Can you please let me know how to do it.
I’ve searched the forums and found the way to change the colours of the widget titles in the footer, but not the side bar.
Thanks
Hi jonrouse!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.sidebar .widgettitle { color: orange !important; }
If you would like to apply the changes only on one widget, please post the link to your website and point it out :)
Cheers!
Yigit
Hi,
Thanks, I ended up changing it through the Advanced Editor, changing the H3 Tag to pink, but this has led me to another question.
I would like the titles to use open sans, weight 300 (light).
I have no idea on how to do this, I know no code, which is why I like your theme. The WYSIWIG nature is awesome!
Thanks for your help.
Hi!
Please add following code to Quick CSS
h1,h2,h3,h4,h5,h6 { font-weight: 300 !important; }
That should change all heading elements to font weight 300
Regards,
Yigit
Thanks so much! One last thing (for now) How do I stop them being all UPPERCASE?
Oh, another question, how do I display breadcrumbs if I have transparent glass heady enabled?
Hey!
Adjust the capitalization of the heading with this:
h1,h2,h3,h4,h5,h6 { text-transform: capitalize !important; }
It’s possible to activate the breadcrumb when glassy header is enabled but it will break the layout of the site. Edit functions-enfold.php, look for this code on line 704:
//deactivate title bar if header is transparent
if(empty($transparency)) $header['header_title_bar'] = 'hidden_title_bar';
Replace it with:
//deactivate title bar if header is transparent
if(!empty($transparency)) $header['header_title_bar'] = '';
Best regards,
Ismael
Perfect! Thanks so much.