• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

quick html help

mobiblu

Senior member
<div style="width:76.8%;height:10%;border:1px solid black;margin-bottom:3px;">Top</div>
<div style="width:8%;height:50%;border:1px solid black;float:left;">Left</div>
<div style="width:68%;height:50%;border:1px solid black;float:right;margin-right:23%;">Right</div>
 
Altering above code, last div:

<div style="width:68%;height:50%;border:1px solid black;float:left;margin-left:3px;">Right</div>
 
Originally posted by: FeuerFrei
Altering above code, last div:

<div style="width:68%;height:50%;border:1px solid black;float:left;margin-left:3px;">Right</div>

😱

If you're gonna do that, you'll require a slight modification to the first div, so they align properly.

<div style="width:76.4%;height:10%;border:1px solid black;margin-bottom:3px;">Top</div>
<div style="width:8%;height:50%;border:1px solid black;float:left;">Left</div>
<div style="width:68%;height:50%;border:1px solid black;float:left;margin-left:3px;">Right</div>

Thanks, FeuerFrei!
 
Back
Top