Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Robin Cornett

    (@littlerchicken)

    On that page, the image under the “Pin this meal plan” heading is aligned right. It doesn’t seem to make a difference visually, because the image is large enough to fill the content, but because of the CSS applied to make it align right, anything displayed after it will not “clear”. So I would suggest two things to fix:

    1. make sure that when you add an image like that, set it to be aligned center (or none)
    2. you can also add some CSS to the Additional CSS panel in the Customizer to make sure the sharing buttons “clear” and will display full width, even if a right/left aligned image is immediately before them.
    
    .scriptlesssocialsharing {
        clear: both;
    }
    

    The first is the more technically correct, but the second will make sure it always works anyway. ?? HTH!

    Thread Starter maryannk

    (@maryannkelley)

    Thank you so much, Robin. I usually do center the images which is probably why this was a random thing on only a couple of posts. It never occurred to me that not clearing the stuff above it would cause the overlay like that.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Buttons overlaying pin on some posts’ is closed to new replies.