Is it possible to adjust the font size for the Paragraph, Address, Preformatted, and Heading (1-6) settings, along with the font color for each? Thank you. Robert
Hello, Paste the code given below in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: P{ font-size:15px ! important; color:red! important; } address{ font-size:15px ! important; color:red! important; } pre{ font-size:15px ! important; color:red! important; } h1{ font-size:24px ! important; color:red! important; } h2{ font-size:22px ! important; color:red! important; } h3{ font-size:20px ! important; color:red! important; } h4{ font-size:18px ! important; color:red! important; } h5{ font-size:16px ! important; color:red! important; } h6{ font-size:14px ! important; color:red! important; } You can adjust these values as per your requirement. This will solve your issue.