01-14-2012, 09:00 PM
(This post was last modified: 01-14-2012, 09:02 PM by AceInfinity.)
You can't put a div next to a div unless you have a table with multiple columns defined in the html.
Quick Example:
Quick Example:
Code:
<table>
<tr>
<td class="class1">
<div id="something1"></div>
</td>
<td class="class2">
<div id="something2"></div>
</td>
</tr>
</table>