Forums

[resolved] 2 images next together widget.. (2 posts)

  1. Youki3
    Member
    Posted 1 year ago #

    I want to place images next together on the right side of the page. On: http://www.h-mag.com/ you can see right the 2 banners nest together. Is the a widget for this..?

  2. Rev. Voodoo
    Volunteer Moderator
    Posted 1 year ago #

    sure, the text widget

    I used it for 3 icons beside each other.

    Just used proper selectors and then used css to position things....

    for instance, uploading 2 images somewhere, and then something like

    <div class="icons">
    <img src="http://site.com/path/to/image.png" />
    <img src="http://site.com/another/image.png" />
    </div>

    in a text widget, with

    .icons img{
    float: left;
    }

    in your style.css

    would make two images be side by side in the text widget.... as long as the total size of the combined images was less that the width of the widget as determined by your css. (depending on your theme, margins and padding could come into play as well)

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags