PDA

View Full Version : vB 3.7.0 b3 memberinfo template question - spacing


Taragon
01-07-2008, 11:53 PM
I'm not really sure how to ask this, but would it be possible to add a space (or extra block) between 'About' and 'Signature'?

this is my current memberinfo_block_aboutme template

<div class="alt1 block_row">
<ul class="list_no_decoration">
$block_data[fields]
</ul>
</div>

<div class="thead block_row">$vbphrase[signature]</div>
<div class="alt1 block_row">
<if condition="$prepared['signature']">
<dl class="list_no_decoration profilefield_list"><dd id="signature">$prepared[signature]</dd></dl>
</if>
</div>


without extra space
http://files.taragon.nl/2008/01/1.jpg

with extra space
http://files.taragon.nl/2008/01/2.jpg

SEOvB
01-08-2008, 12:30 AM
did you try

<div class="alt1 block_row">
<ul class="list_no_decoration">
$block_data[fields]
</ul>
</div>
<br /><br />
<div class="thead block_row">$vbphrase[signature]</div>
<div class="alt1 block_row">
<if condition="$prepared['signature']">
<dl class="list_no_decoration profilefield_list"><dd id="signature">$prepared[signature]</dd></dl>
</if>
</div>


i didn't try it, but it looks like it'd make sense?

Taragon
01-08-2008, 03:17 AM
I'm afraid that didn't work. It creates some grey area, instead of a space or opening between.

http://files.taragon.nl/2008/01/3.jpg

Opserty
01-08-2008, 02:41 PM
The code that you posted is contained within another table/division. You need to close the table or division to create the space. However they are meant to be together as they both display together on the "About Me" part, so you may need to just more editing. I haven't played with vB3.7 properly so I don't know for sure.