• Resolved martyebarnes

    (@martyebarnes)


    http://caseyscircle.org/about/

    I would like to find the option to not change the hover color nor underline the header/title ‘Casey’s Circle” on my page. Does anyone know where to set this?

    I am using SG Simple, a child theme for SG Window. Any help/direction is GREATLY appreciated.

Viewing 6 replies - 1 through 6 (of 6 total)
  • mrtom414

    (@mrtom414)

    You can add this css rule to a css custom plugin or your child theme’s style.css

    .site-title a {
        color: inherit !important;
        text-decoration: none !important;
    }
    Thread Starter martyebarnes

    (@martyebarnes)

    That didn’t work. I added it to the “Simple Custom CSS” plugin first, no luck. I tried the general style sheet for the child theme, no luck, the more advanced scheme that I am using in the child theme’s style sheet, no luck and so I even added this to the parent SG Window style sheet. Also, no luck. It still goes gray and underlined.

    mrtom414

    (@mrtom414)

    I tried it in code inspector and it worked fine. You can try

    .site-title h1 a {
        text-decoration: none !important;
        color: inherit !important;
    }

    mrtom414

    (@mrtom414)

    sorry should be

    .site-title h1 a:hover {
    text-decoration: none !important;
    color: inherit !important;
    }

    Thread Starter martyebarnes

    (@martyebarnes)

    Thank you! It works now. I really appreciate your help.

    Thread Starter martyebarnes

    (@martyebarnes)

    Closing- resolved

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘No Underline on Header/Title’ is closed to new replies.