Site logo

Archived topic

Background colored / text highlight on hover

7 replies · Started by Patricia on September 11, 2018

Viewing posts 1–8 of 8

Hi there,

both would require CSS.
First:

.single-post .site-main .inside-article a:hover {
    background-color: red;
}

Second will get you started with the H2:

h2 {
    border-bottom: 1px solid #ddd;
}

h2:after {
    content: "";
    margin-top: 10px; /* adjust to suit line-height */
    display: block;
    position: relative;
    left: 0;
    bottom: -2px;
    width: 20%;
    height: 3px;
    background: #FF5553;    
}

that's awesome!! Thanks

I saw browsing other topics it is possible to make a donation? can you tell me where's the link?

btw, shall i put those codes in elementor or in custom CSS?

Thank you so much for the donation, Patricia! :)

you're welcome! Thanks to you for solving code stuff that is not generatepress-suport-related to the non-programmers like me :)

We're happy to do it! :)

This archived topic is closed to new replies.