Hi,
This is slightly unrelated but i'm having some CSS issues on the template:
Link to the page
For some reason my footer is half may up the page, rather than normal position on bottom.
Here is my template code:
Code:
<div id="view-test" class="<vb:if condition="$selected_tab == 'test'">selected_view_section<vb:else />view_section</vb:if><vb:if condition="$userinfo['userid'] != $bbuserinfo['userid']"> vm_other_prof</vb:if>">
<div class="blocksubhead subsectionhead userprof_headers userprof_headers_border">
<h4 class="subsectionhead-understate">Body Measurements</h4>
</div>
<div class="body_measurements">
<div class="current_bm">
<vb:if condition="$userinfo['field8']">
<span class="label">Height:</span>
<div><b id="body_data">{vb:raw userinfo.field8}</b><span class="lbs_font">cm</span></div>
<vb:else />
<span class="label">Height:</span>
<div><b id="body_data">--</b><span class="lbs_font">cm</span></div>
</vb:if>
</div>
<div class="current_bm">
<vb:if condition="$userinfo['field7']">
<span class="label">Weight:</span>
<div><b id="body_data">{vb:raw userinfo.field7}</b><span class="lbs_font"> Lbs</span></div>
<vb:else />
<span class="label">Weight:</span>
<div><b id="body_data">--</b><span class="lbs_font"> Lbs</span></div>
</vb:if>
</div>
<div class="current_bm">
<vb:if condition="$userinfo['field15']">
<span class="label">Body Fat %:</span>
<div><b id="body_data">{vb:raw userinfo.field15}</b><span class="lbs_font"> %</span></div>
<vb:else />
<span class="label">Body Fat %:</span>
<div><b id="body_data">--</b><span class="lbs_font"> %</span></div>
</vb:if>
</div>
</div>