Viewing 5 replies - 1 through 5 (of 5 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Have you spoke to your theme’s vendors regarding support for their products?

    Thread Starter Alex Walker

    (@alexfwalker)

    No, it’s a plugin that I’m fiddling with. It works fine until you start trying to float the images one way or the other. If I remove the ‘float: left;’ command from the custom CSS, the image will sit to the right of the hyperlink, with the lines in the right place, but that’s not what I want.

    Thread Starter Alex Walker

    (@alexfwalker)

    This is the css acting on that element:

    .wp-post-image {
        float: left;
        margin:10px 10px 10px 10px;
    }
    CrouchingBruin

    (@crouchingbruin)

    Try adding this CSS rule:

    .lcp_catlist li {
       clear: both;
    }

    This will make sure each list item “clears” of the list items above it.

    Thread Starter Alex Walker

    (@alexfwalker)

    Fixed! Superb, thank you!

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Struggling to align images correctly’ is closed to new replies.