• Resolved saritlotem

    (@saritlotem)


    Hi all,
    I’m trying to change the underline color, but can’t find the right code, can you please help me. It is the very light gray line under the small “home” as well as under the widgets headers. here is a link to my site https://www.acupuncturenjbergen.com/

    Thanks much.
    Sara

Viewing 8 replies - 1 through 8 (of 8 total)
  • Before you do any changes, you need to create a child theme so your changes will not be lost when the theme is updated. Once you have that working, post back and someone can help you with the CSS changes.

    Thread Starter saritlotem

    (@saritlotem)

    did it. thanks

    It’s not active on your site — did you switch to the child theme?

    Thread Starter saritlotem

    (@saritlotem)

    no, i just saved the original somewhere else, can you still help me ?

    It’s not the way to go – at the very least use a Custom CSS plug-in.
    For the widget titles, the code you’d likely need to use is:

    .widget ul li a:hover {
        color: #333333;
    }

    For the home link:

    a:hover {
        text-decoration: underline;
        color: #xxxxxx;
    }

    Change the colors above — this will change the entire text/underline upon hover — it’s not possible to only change the underline — at least not that I am aware of.

    Thread Starter saritlotem

    (@saritlotem)

    Thank you!
    sorry for not being clear, i’m not looking to change the text color, but the light gray underline under the small “home”

    Okay, that involves more complicated CSS because when using “underline” you cannot change just the underline part. But this is another way to do what you want:

    #breadcrumbs a:hover {
        border-bottom: 1px solid #xxxxxx;
        text-decoration: none;
    }

    Thread Starter saritlotem

    (@saritlotem)

    yes!
    Appreciate.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Rumput Hijau theme help please’ is closed to new replies.