Hi all. This feels like a very basic question to me but I haven't seen it discussed or covered in any example or forum:
Is it possible to have the multiple webparts in a webpartzone stack horizontally instead of vertically? Every example I've seen has the page divided into columns, with webparts appearing below each other in the webpartzone. Is it possible to have a layout such as this:
<div>
<cc1:CMSWebPartZone ID="zoneTop" runat="server" />
</div>
<div style="clear: both">
<cc1:CMSWebPartZone ID="zoneFirstRow" runat="server" />
</div>
<div style="clear: both">
<cc1:CMSWebPartZone ID="zoneSecondRow" runat="server" />
</div>
<div style="clear: both">
<cc1:CMSWebPartZone ID="zoneBottom" runat="server" />
</div>
and have the individual web parts inside each zone float left to form a row?
Thanks.