• Resolved fpsn

    (@fpsn)


    Hi,

    I want to set a default font an color for H1, H2, H3, … headings and I’m encountering 2 problems:

    1. the font:
    I found the setting (under Typography \ Headings) and set the font family to Abril Fatface, but stil my H1 heading is not updated to the new font.

    2. the color:
    Eh… I don’t even find the setting for this? …
    (I don’t understand why the default H1 color is not in the same place as the default H1 font.)

    Using Neve theme + Elementor.

    I’m new to this stuff, so any help is much appreciated, thanks!

    • This topic was modified 5 years ago by fpsn.

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter fpsn

    (@fpsn)

    UPDATE: Okay, I found the solution to the first problem – apparently Elementor also has some “general” settings and it was conflicting with my theme settings.
    Under the Elementor settings I checked 2 boxes to allow the theme settings to “come through”.

    But I’m still wondering about part 2…

    Hello,

    At this point, there are no options for colors. To change them, you can add this custom code in Appearance > Customize > Additional CSS (change the colors to what you need):

    h1 {
        color: green !important;
    }
    h2 {
        color: red !important;
    }
    h3 {
        color: blue !important;
    }
    h4 {
        color: blue !important;
    }
    h5 {
        color: blue !important;
    }
    h6 {
        color: blue !important;
    }

    Regards,
    Rodica

    This does not work for me. I want change my heading 3 to #D25326
    What exactly is the code I need to add in Additional CSS

    Hi @dinahcrellin,

    To change the H3 to your desired color you need to add this in Additional CSS:

    h3 {
    	color: #D25326 !important;
    }
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Setting default font and color for H1 headings’ is closed to new replies.