• why will

    h1 {
    color: black;
    }

    not over ride the theme typography h1 settings when place in the advanced settings window?

Viewing 5 replies - 1 through 5 (of 5 total)
  • hannah

    (@hannahritner)

    Why are you not just changing the color in theme options > typography?

    Hannah

    Thread Starter charlieusa

    (@charlieusa)

    I wanted to change the settings for only one page..

    I can change the background image, p, menus etc.

    I cannot change the page title font color which is h1 when I look at the page source code.

    but

    h1 {
    color: black;
    }

    does not change the color to black

    thought you could tell me if there is something else that I needed change.

    hannah

    (@hannahritner)

    You need to identify which page you are trying to change the color on. Just h1 would effect all the h1 fonts on the whole site. So could you please post a link to the page you would like to edit?

    Hannah

    Thread Starter charlieusa

    (@charlieusa)

    Hi Hanna

    It appears that one cannot change h1 using Virtue’s advanced setting window.

    since advanced setting code is appended at the end of the first style sheet on the page.

    there is a latter style sheet:

    <style type=”text/css” title=”dynamic-css” class=”options-output”>

    which overwrites the declarations for h1 , body, etc.

    let me know if I do not understand.

    I have now found a plugin that allows me to enter the css as a shortcode which works since its after the

    <style type=”text/css” title=”dynamic-css” class=”options-output”>

    style sheet on the page.

    Is there another way to do this?

    With gratitude always, for your awesome support.

    Thank you

    You can do this with

    h1 {
    color: black !important;
    }

    But if you want to just effect one page you should use the page id and css like this:

    .page-id-44 h1 {
    color: black;
    }

    Kadence Themes

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘h1 color’ is closed to new replies.