• Resolved wayne2346

    (@wayne2346)


    Hello,

    On my site I would like to remove the underlines on my title posts. It would show up when I hover above it. Also, when I hover I want the letters to become a different color, say black.

    Thank you

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Moderator Steven Stern (sterndata)

    (@sterndata)

    Volunteer Forum Moderator

    .colors-dark .entry-title a:hover {
        text-decoration: initial;
        box-shadow: initial;
       color: #ccc;
    }  

    To add CSS:

    • If you are using WordPress 4.7 or later, use the “Additional CSS” option in the customizer.
    • If your theme has a custom CSS option, use that to add the CSS shown above.
    • If not, install the plugin Simple Custom CSS.

    Learn to use the Chrome Developer Tools to help you see and test changes to your CSS.

    Thread Starter wayne2346

    (@wayne2346)

    Thank you for replying back. It worked out. On my site I would like to do the same for the side widget. I tried this CSS:

    .colors-dark .widget-title a:hover {
    text-decoration: initial;
    box-shadow: initial;
    color: #ccc;
    }

    But it didn’t change. I would like to remove the hover link on my copyright too. Thanks again for your help.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Removing Posts Underlines’ is closed to new replies.