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..?
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..?
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)
This topic has been closed to new replies.