[tagDiv] Social Counter

Posted in: Newspaper
Post count: 15

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.

http://www.thebackpackertravels.com

Post count: 23312

Hello thebackpackertravels,

Try the code below and place it in Theme Panel -> Custom CSS area.

The code is ->

.td_block_social_counter {
font-size: 15px;
}

Thanks for the message!

Post count: 15

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 🙂

Post count: 20688

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

Post count: 15

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?

Post count: 15

Not to worry, managed to sort. Thanks for your help

Post count: 20688

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

Viewing 7 posts - 1 through 7 (of 7 total)
The forum ‘Newspaper’ is closed to new topics and replies.