Hello
Is it possible to increase the font size of the text for this widget? Can’t find it anywhere under the font settings in Theme Panel.
Hi Catalin
Thanks, that worked! Would you also be able to tell me how to change the actual font to Open Sans? I also need to change the font and font size for the other two widgets (WE ARE CURRENTLY IN… and OUR NEXT DESTINATION IS…).
Thank you 🙂
Hi,
The font used in the Social counter is the Open sans font already
– https://www.screencast.com/t/qSvEXObeLT
The widgets you mention inherit the font properties set for the body in the theme panel. You could change them in particular with custom code, like this for example
– https://www.screencast.com/t/hxgJBIYMr
.td_block_text_with_title {
font-family: "Open sans";
font-size: 20px
}
The code must be entered in Theme panel->Custom CSS, if you decide to use it. Please correct me if I misunderstand something.
Thanks
Hi Simon
I have input the code but now the font is showing as Times New Roman I believe. Any ideas?
Also, for the social counter, any chance I can remove the bold?
Not to worry, managed to sort. Thanks for your help
Hi,
You could set a normal font weight property for the social counter, with a code like this
– https://www.screencast.com/t/y7shSZcEM
.td_block_social_counter {
font-weight: normal;
}
Thanks