Changing colors on themes

http://bnmproejcts.info/cipm

How can I do the following:

  • Change Button Colors to a specific provided value from the client
  • Change Heading Color Levels (for specific H Levels or all H levels)
  • Change font sizes for Heading Levels
  • Change Font Sizes for body text

correct url is: http://bnmprojects.info/cipm

Hey @spencey,

You can set this up in X > Theme Options > Button. For more details please see https://theme.co/apex/forum/t/customizer-button-options/140

For uniformity, our theme only has 1 color option for all heading levels. That can be set in X > Theme Options > Typography. For more details, see https://theme.co/apex/forum/t/customizer-typography/134

Our theme uses a predesigned custom font size ratio as you’ll see in this tool https://type-scale.com/. If you wish to modify that, you’ll need to add this code in Theme Options > CSS. Edit the percentage values as per your design.

h1, .h1 {
    font-size: 400%;
}
h2, .h2 {
    font-size: 350%;
}
h3, .h3 {
    font-size: 200%;
}
h4, .h4 {
    font-size: 150%;
}
h5, .h5 {
    font-size: 125%;
}
h6, .h6 {
    font-size: 110%;
}

That can be set in X > Theme Options > Typography. For more details, see https://theme.co/apex/forum/t/customizer-typography/134

P.S. The answers I provided here are merely for theme options. If you’re going to create a specialized page and use Cornerstone or the Content Builder, you’ll be setting colors and font sizes in each of the elements. If you’re interested in that, please check out the tutorials in our Knowledge Base

Hope that helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.