Log in

View Full Version : "attached images" box


delmarva
11-26-2006, 12:41 PM
Is there any way to make that invisable or just get rid of it?

delmarva
12-07-2006, 01:50 PM
Anyone? There has to be a way?

Rich
12-07-2006, 07:15 PM
Hello,

You need to edit the postbit template you are using. (Either postbit or postbit_legacy).

Look for this code:

<if condition="$show['imageattachment']">
<fieldset class="fieldset">
<legend>$vbphrase[attached_images]</legend>
<div style="padding:$stylevar[formspacer]px">
$post[imageattachments]
</div>
</fieldset>
</if>

Change it to:

<if condition="$show['imageattachment']">
<div style="padding:$stylevar[formspacer]px">
$post[imageattachments]
</div></if>

They will no longer be displayed in the "box". (the fieldset.)

delmarva
12-07-2006, 08:33 PM
Worked perfectly! Thanks