Hello,
I am not able to change the font size, style or anything related to fonts in Post Content section. I tried the going to Newspaper icon on dashboard -> Theme Panel -> Theme Font
Even by changing the options there I am not able to make any change. The font size/style of all the post content is same as default i.e. the one I choose while writing a post.
Kindly help to resolve the issue.
Hello,
This could be a plugin conflict so please disable all plugins except visual composer, clear cache and reset cdn files if you use it. Please also check any custom code you might have added to the theme panel or the theme files. If you use a child theme, please switch to the main theme to make sure it does not affect the proper functionality of the theme.
Also please make sure that you increase your system status parameters according to this guide: https://forum.tagdiv.com/system-status-parameters-guide/
Thank you!
Hi Bogdan,
I tried all the things you suggested as the corrective measure the problem still continues. Not only the font size is different in all the posts but when I open website using mobile plugin, different posts have different font style, color and size.
Kindly guide me how to resolve the issue.
Website: http://www.TheUnder18.com
Please contact us on our email address at contact@tagdiv.com and provide a link to your site and wp-admin (login information and admin rights) so we can login and investigate. Please also include a link to this conversation.
Thank you!
Hi,
I have sent an email on the mentioned id. Please check the email and reply ASAP.
Thanks!
Hi,
Thanks for resolving the issue related to font on desktop. I need to make following changes in the mobile there please help CSS code:
1. Change font style of the title of the posts appearing in mobile theme to Playfair Display
2. Change font style of the post content in mobile theme and size too
3. Change the font style of the title appearing on the grid on the homepage in case of mobile theme to Playfair Display.
Thank you for helping me out 🙂
Hi,
You can use the following css code:
1/3. .td_module_wrap .entry-title a {
font-family: Playfair Display;
}
2. .td-post-content p {
font-family: Playfair Display;
font-size: 30px;
}
Add this code to the mobile theme > custom code > custom css section: https://www.screencast.com/t/vtiIYRN3ryW4
Hope this helps you!
Thanks!
Hi,
Thanks for the code. I did add the code where you suggested but it is not taking Playfair Display family font. The font is still the same as old one. Is there any method I can make these changes.
Thank you 🙂
Hello The Under18,
If the above code is not applied, you should try the !important tag for the code above to give more priority for this.
.td_module_wrap .entry-title a {
font-family: Playfair Display!important;
}
.td-post-content p {
font-family: Playfair Display;
font-size: 30px!important;
}
Thanks for your understanding!
