Hello! I need to increase the font size (on mobile version) on posts and pages. Please provide me the CSS and further instructions. My website is https://savoriurbane.com/
Hello,
The request is too general. What font do you want change? where? in what size?
I will provide a few example codes for you to edit to your preference:
@media(max-width:767px){
.page .td-excerpt{
font-size:20px!important
}
.page .td-module-title, .page .block-title{
font-size:20px!important
}
.td-post-content p, .td-post-content{
font-size:20px
}}
You can add the code in the theme panel- custom css box
Thank you!
The post content text. Textul continutului postarilor este foarte marunt si mi s-au plans cititorii. Cred ca este 16 px si as dori sa vad cum arata cu 18 sau 20. Va rog sa-mi scrieti exact codul pe care are trebui sa-l inserez in casuta CSS de la tema mobila. Va multumesc!
Hi,
Indeed the post content font is 15px, this code will allow you to increase the size to the desired value
.td-post-content p {
font-size: 18px;
}
You can change the value in the code and test until you achieve the desired result. The result will be like this with a value of 18px for the paragraphs
– https://www.screencast.com/t/nIZCc1JLGEQQ
Please let us know if you need further help, or you have any questions.
Thank you!