I’d like to change the font settings for only the “Related Articles” text, not the titles within it, but the section itself. Please see photo:
Also, how do I adjust the buttons available on share, particularly removing the Pinterest button.
Thanks!
Hello,
The related articles font can be changed from the theme panel like so: https://www.screencast.com/t/DVHvDwCP
As for the social icons, they can only be removed from the theme code or hidden with css.
From the code you must delete this line: https://www.screencast.com/t/FH177UcssT
Or the css method:
add this code in the theme panel-> custom css box:
.td-social-pinterest{
display:none!important;
}
Thank you!
Thanks! The social icons removal worked perfectly however the Related Articles font suggestion has an issue.
When I went to change the Font Size under Blocks / Widget Title, it not only did not change the size of the “Related Articles” text, it increased the “# Comments” text in the comments section.
How do I change the font size of only the “Related Articles” text?
Thanks again for your help so far.
Hello,
You need to have related articles on for me to see them and inspect the code. If it’s set to off, I cannot inspect the code so the site does not help.
Try to use this general code to change the related articles font:
.td_block_related_posts .td-related-title{
font-size:20px!important;
}
Thank you!
Hi,
Thanks for the reply. I’ve enabled them for now:
http://wuche.gg/dota2/fragrances/summers-scent-track-best-warm-weather-fragrances-2/
The code you provided unfortunately did not work. Can you take another look when you get a chance please?
Thanks!
http://wuche.gg/dota2/top-tip-how-to-find-your-signature-scent-this-spring-3/
Try that link instead, deleted most of the demo content
Hello,
This is why we usually need to inspect the site in order to provide a code. Not everywhere will a general css work. Our demos add extra css to each element. In this case you should use this code:
.td-blog-beauty .td_block_template_1 .td-related-title .td-cur-simple-item{
font-size:20px!important;
}
Thank you!