Log in

View Full Version : Could someone take a look at this?


SnickersTK
01-23-2006, 05:31 PM
Style manager: bbcode_quote

<div style="margin:20px; margin-top:5px; <if condition="$show['iewidthfix']">width: 99%;</if>">
<fieldset class="fieldset"><legend><phrase 1="$username">$vbphrase[originally_posted_by_x]</phrase></legend>
<table cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%">
<tr>
<td class="quote_text" class="alt2">
<if condition="$show['username']">
<div>$message</div>
<else />
$message
</if>
</td>
</tr>
</table>
</fieldset>
</div>

if I don't do it wont work as it should at all, design screws up completely :( I can't even remove the "" without it screwing up.


Help, please...

S@NL - BlackBik
01-23-2006, 08:46 PM
What do you want to change and what did you change allready?
You didn't tell us what you want to accomplish ;)

Ranma2k
01-23-2006, 09:20 PM
Style manager: bbcode_quote

<div style="margin:20px; margin-top:5px; <if condition="$show['iewidthfix']">width: 99%;</if>">
<fieldset class="fieldset"><legend><phrase 1="$username">$vbphrase[originally_posted_by_x]</phrase></legend>
<table cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%">
<tr>
<td class="quote_text" class="alt2">
<if condition="$show['username']">
<div>$message</div>
<else />
$message
</if>
</td>
</tr>
</table>
</fieldset>
</div>

if I don't do it wont work as it should at all, design screws up completely :( I can't even remove the "" without it screwing up.


Help, please...

this
$show['username']

should be this
$show[username]

and this
$show['iewidthfix']

should be
$show[iewidthfix]

and i don't really know what you want :)

SnickersTK
01-23-2006, 09:36 PM
nevermind that anymore, it works now, i found another way :)

Thanks for your effort