Hi ,
These are very important steps to do:
put this code to your Child Theme style.css file
OR
Install Simple Custom CSS plugin and put the code there.
If you do not do css this way and put the code to themes style.css, you will loose all changes you made when you update your theme in the future.
I’m doing this on my browser to find solution.
It can get to some different behaviour on your site.
It can happen that it is not working.
Then we have to look further.
h1.entry-title {
font-size: 24px;
}
h2.entry-title {
font-size: 22px;
}
p {
font-size: 15px;
}
or
h1.entry-title {
font-size: 24px!important;
}
h2.entry-title {
font-size: 22px!important;
}
p {
font-size: 15px!important;
}
Hope this is what you need
Cheers
TR
-
This reply was modified 9 years, 7 months ago by
Tahoerock.
…..or try this more general code:
h1 {font-size: 24px;}
h2 {font-size: 22px;}
h3 {font-size: 20px;}
h4 {font-size: 18px;}
h5 {font-size: 16px;}
h6 {font-size: 14px;}
p {
font-size: 15px;
}
or
h1 {font-size: 24px!important;}
h2 {font-size: 22px!important;}
h3 {font-size: 20px!important;}
h4 {font-size: 18px!important;}
h5 {font-size: 16px!important;}
h6 {font-size: 14px!important;}
p {
font-size: 15px!important;
}
You can change No to any you like
Cheers
TR
-
This reply was modified 9 years, 7 months ago by
Tahoerock.
Just installed a up-to-date Simple Custum CSS and used the following code:
h1.entry-title {
font-size: 24px!important;
}
h2.entry-title {
font-size: 22px!important;
}
p {
font-size: 15px!important;
}
It worked great. Thank You
Hi,
Great to hear.
If you need any further help, let me know.
Cheers
TR