Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1311787

    I would like to put an orange line in front of the Learn more link. See image

    https://staging.manfred-eibl.de/wp-content/uploads/2021/07/image_01.jpg

    #1312172

    Hi Markus,

    Thanks for the screenshot. Could you post a link to where we can see the actual elements on your site as well please?

    Best regards,
    Rikard

    #1312189
    #1312915

    Hi,

    Thank you for the info.

    You can add this css code to create an orange line before the read more text. Adjust it as necessary.

    .read-more-link {
        position: relative;
    }
    
    .read-more-link a {
        padding-left: 40px;
    }
    
    .read-more-link:before {
        content: "";
        height: 1px;
        width: 30px;
        background: orange;
        display: block;
        position: absolute;
        left: 0;
        top: 14px;
    }
    

    Best regards,
    Ismael

    #1313042

    Hello,
    unfortunately it doesn’t work. I see a distance, but I don’t see the line. See link

    I’ve added the login details for the page below

    #1313542

    Hi,

    It seems to be working as it should. Please try to remove the browser history and make sure to purge the cache. Let us know if that helps.

    Best regards,
    Ismael

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