• Trying to figure this out with no luck. Down in my footer area, I’d like the post summaries to be next to one another rather than under each other.

    Here’s my site:
    https://livingtherusticlife.com/

    Any help is appreciated.

    [Moderator Note: Please ensure that you are embedding links correctly in your posts.]

Viewing 1 replies (of 1 total)
  • C W (VYSO)

    (@cyril-washbrook)

    Simplest way would be to apply width and float properties to the list items: targeting .rpwe-block li or something to that effect. For instance:

    .rpwe-block li {
         float: left;
         width: 25%;
         margin-right: 5%;
    }

    You’d have to experiment with the dimensions, margins and padding of your footer elements to get things looking exactly how you want, but that’s the basic principle.

Viewing 1 replies (of 1 total)
  • The topic ‘Horizontal Summaries with Thumbnails’ is closed to new replies.