[Resolved] Background colored / text highlight on hover

Home Forums Support [Resolved] Background colored / text highlight on hover

Home Forums Support Background colored / text highlight on hover

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #674191
    Patricia

    Hi!

    I’ve looking for the option in the personalization area in generatepress that allows do something similar as the hover in the links on that site https://josefacchin.com/eliminar-canal-youtube-borrar-video/

    Is there an option to do that?

    Also, How is it possible to add underligned titles for the h titles (h1, h2, etc)? as seen here https://www.malagaware.com/generatepress-review-opinion/

    thanks!

    Patricia

    #674276
    David
    Staff
    Customer Support

    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;    
    }
    #674485
    Patricia

    that’s awesome!! Thanks

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

    #674486
    Patricia

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

    #674489
    David
    Staff
    Customer Support

    Thats awesome πŸ™‚
    https://generatepress.com/ongoing-development/

    Personally i keep all my CSS in the Theme Customiser or in the child theme style sheet.
    Let me know if it don’t work correctly in Elementor πŸ™‚

    #674806
    Tom
    Lead Developer
    Lead Developer

    Thank you so much for the donation, Patricia! πŸ™‚

    #675171
    Patricia

    you’re welcome! Thanks to you for solving code stuff that is not generatepress-suport-related to the non-programmers like me πŸ™‚

    #675590
    Tom
    Lead Developer
    Lead Developer

    We’re happy to do it! πŸ™‚

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.