Ive installed this on a vb4.0.8 PL2 board with a custom style and want to use the custom CSS option.
The name of the class is "post_field" so I added this text in the "Profile Field Custom CSS class" field in the admincp.
In the "postbit custom content" box I entered
Code:
<dt>{vb:rawphrase field19}</dt> <dd>{vb:raw field19}</dd>
In the end I expect it to look like this:
Code:
<div class="post_field"><dt>{vb:rawphrase field19}</dt> <dd>{vb:raw field19}</dd></div>
but instead it shows up like this:
Code:
<div class="smallfont post_field">title_of_field19: text_of_field19</div>
Text and title of the field are correct but in the div the "smallfont" is to much and
I need the <DT> and <DD> to be included to make it showing up like the rest.
How can I do this?