• On a WP-page it’s easy to put pictures next to each other.
    But the moment you add a description to a picture the other pictures jump to the next line.
    What should I do to get pictures with sub text next to each other – without using a table or gallery?
    Thanks in advance.

Viewing 5 replies - 1 through 5 (of 5 total)
  • You could put them in divs and use css.

    Example:

    <div id="main-container">
    <div id="left-image">
    <img src="image1.jpg">
    </div>
    <div id="right-image">
    <img src="image2.jpg">
    </div>
    </div>

    `#main-container {
    width: 100%;
    }
    #left-image {
    width: 50%;
    float: left;
    }
    #right-image {
    width: 50%;
    float: right;
    }

    Thread Starter apestaartje

    (@apestaartje)

    Hi Graphical,
    I don’t understand it. It’s for just one page and I want to have 3 pictures next to each other with a distance I am able to adjust.

    Here is an example of how you can do that: https://jsfiddle.net/8VH3t/

    You can add some padding to each image through the css to create this distance if you wanted.

    Thread Starter apestaartje

    (@apestaartje)

    OK, I will try. Thanks.
    By the way do you know a css code to put a hyperlink in a footer area?

    Start a new thread for that request.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘pictures with subtitles next to each other’ is closed to new replies.