HTML Image
TappedOut forum
Posted on Nov. 19, 2014, 11:07 p.m. by VictorSilvertome
I noticed awhile back that Tappedout.net would automatically add a / to the end of any html code. Since then, I haven't been able to have more than 1 imag eper row.
I was wondering if there was anything I could do to be able to have multiple images per row? Any help would be entirely appreciated, thanks!
Yeah, there is a formatter that TappedOut is using that is doing funky stuff. As you can see, it decided to insert the <strong> tags into my copypasta for some reason. shrug
November 20, 2014 8:54 a.m.
they are made responsive to make sure they work on mobile.
November 20, 2014 9:08 a.m.
Are you doing the responsive formatting through CSS, or through background code? I was looking through your stylesheet CSS, and holy stuff, you are the king of CSS.
November 20, 2014 10:29 a.m.
lol thanks but you're probably looking at the twitter bootstrap. i do it via javascript i think in most cases.
graft says... #2
You could always build a table and put the images in a single table row. For example:
<table style="width:600px"> <tr> <td><img src="http://img2.wikia.nocookie.net/cb20130724212050/bacon/images/0/01/I_love_bacon_pancakes.png"></td> <td><img src="http://img2.wikia.nocookie.net/cb20130724212050/bacon/images/0/01/I_love_bacon_pancakes.png"></td> </tr></table>
Will produce this:
November 20, 2014 8:24 a.m.