Site logo

[Support request] Read more floating

Home Forums Support [Support request] Read more floating

Home Forums Support Read more floating

Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #2406009
    William

    Hello,

    I want my read more tag to be floating on the right and I did use this code (below) in the extra CSS tab but nothing happens.

    a.read-more.button {
    float: right;
    }

    I’m I missing something heren?

    Thanks.

    Kind regards,

    William

    #2406025
    David
    Staff
    Customer Support

    Hi there,

    can you share a link to a page where i can see the read more you want floating right ?

    #2406038
    William

    Hi David,

    Sure, https://tradenkunjeleren.nl is the one.

    Thanks.

    Kind Regards,
    William

    #2406067
    David
    Staff
    Customer Support

    Try this CSS:

    
    a.read-more {
        float: right;
    }
    
    #2406150
    William

    Unfortunately this also didn’t work.

    #2406209
    David
    Staff
    Customer Support

    Where are you adding the CSS?
    And is is still added to the site ?

    #2406244
    William

    Hi David,

    Yes it is still added to the site.

    I have added it to extra CSS in the customizer menu.

    #2406305
    David
    Staff
    Customer Support

    Can you disable your cache plugin so i can see whats happening ?

    #2406315
    William

    I just did.

    #2406660
    David
    Staff
    Customer Support

    Are you using any other otpimization plugins ? As i do not see the Additional CSS in the <head> of your site ?

    #2406886
    William

    I check, and I deactivated WProcket so now it should be okay.

    #2407782
    David
    Staff
    Customer Support

    Ok, so that CSS i gave is inside a @media query so its only affecting mobile.
    At the end of your CSS you will see:

    
    @media (max-width: 768px) {
    @media (max-width: 768px) {
        .post-image img {
            max-width: 100%;
        }
    
        a.read-more {
            float: right;
        }
    }

    Change that to:

    
    a.read-more {
        float: right;
    }
    
    @media (max-width: 768px) {
        .post-image img {
            max-width: 100%;
        }
    }

    Then it should work on all devices

    #2407800
    William

    Perfect, now it works 🙂

    Thanks a lot David, have a great day!

    Kind regards,

    William

    #2407978
    David
    Staff
    Customer Support

    You’re welcome

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