Quote:
Originally Posted by ForceHSS
When you say add that to the custom field do you mean the template or title on the profile field
|
well, when you create a custom field, an id number for a custom field will be generated. you can use that id to place it in your <dl></dl> code.
so it is for template result because the title is fixed, not variable
like this:
<div class="bppostbit"><dt>
My Team:</dt><dd>{vb:raw post.field
X}</dd></div>
so basically what you will need to change only X which is field number i.e
{vb:raw post.field8}
is it clear now? if not, I will try to add screenshot to clarify it deeper
--------------- Added [DATE]1380110482[/DATE] at [TIME]1380110482[/TIME] ---------------
ok, when you go to postbit_legacy, you will find few divs with the same name, i.e:
<div class="bppostbit">
These ones where you need to look at and how they are arranged. The custom field you have there is only
<dt>My Team</dt><dd><img src="xxxxxxxxxxx/Test 1.gif" alt="Test 1" title="Test 1"></dd>
The above code will surly make a mess because it is not wrapped with a div
so that's why it is correct to make it like this:
<div class="bppostbit"><dt>My Team:</dt><dd>{vb:raw post.field5}</dd></div>
I don't think it is a good idea to use profile manager to write such code. there you create only a custom field and use that custom field to place it with the code in postbit_legacy template.
if you are still confused, send me your postbit_legacy code template as PM and I will make the modification and send it back to you ASAP.