1. Appearance> Theme Options> Typography settings is where you control the fonts through the admin area. You can also target specific text on the page via CSS if you want to be a bit more specific.
2. You have to use a web developer tool such as chrome inspect to find the classes. Here is a little tutorial that may be helpful for you.
http://www.kadencethemes.com/chrome-inspect-tool/
3. You should paste all of your CSS edits to Appearance> Theme Options> Advanced Settings.
Be sure to post a link if you need specific css help from us.
Kadence Themes
Hello,
Thank you for the response. I am able to understand how to use chrome inspect element tool. I have noticed the area where to edit. However there are lot of “div” tags. How to edit those. It would be really awesome if you can help for an example
https://8cross8.com/coaches
In the filter options, the “Expertise” and “Target Student Strength” font size is high. How to reduce those ?
Regards,
Muthu.
Highlight ‘Expertise’ , right click, ‘Inspect Element’.
I included a screenshot . Play with the font size in the inspector until you find the size you want – then copy that class (with the font size) to CSS edits to Appearance> Theme Options> Advanced Settings.
Example if you want 15 px for ‘Expertise’ and ‘Targeted..’
You would put:
legend {
font-size: 15px;
}
in to Appearance> Theme Options> Advanced Settings.
With our online editor, you can edit the CSS, and click on a button to view the result.
Hello,
Thank you so much for the guidance. I have made the changes and it works well.
One last question. I do make a lot of changes and I want to make a comment of why I edit. How do I add the comments to the CSS ?
Regards,
Muthu.
You can make comments by surrounding the comment with /* and */:
/* This is a comment. */