I would like to know how to show two link images next to each other on my blog. To do this I would be using the widget option on wordpress. So basically what I'm looking for is the code that would enable me to show the images next to each other, not one on top of the other.
The template uses CSS but I don't know how make it work on a widget. That's why I thought using HTML would be easier.
you can use css in your widget: <div stlye="float:left;"> <a href="imagelink2"><img src="image2" /></a> </div> <div stlye="float:left;"> <a href="imagelink2"><img src="image2" /></a> </div> Code (markup):