Quote:
Originally Posted by TimberFloorAu
Can we still use this in vb4?
I should have thought so, as it is basic html.
I have a page: and the code is:
<fieldset>
<legend><b>Some title here</b></legend>
<p>Some content here</p>
</fieldset>
Yet it is not appearing on the page as it should.
Is there a reason ?
|
Quote:
Originally Posted by TimberFloorAu
Bump
|
With vB4 templates, make sure you specify the class for the fieldset tag...
Code:
<fieldset class="fieldset">
<legend><b>Some title here</b></legend>
<p>Some content here</p>
</fieldset>