PDA

View Full Version : Need to make a fast loading stye


djjeffa
10-18-2004, 05:39 PM
Im tring to make or edit a style for dial up users. I want to remove the signature and avator as well as anything else that will slow it down Im using this for members with dial up. Could anyone give me any tips or tell me how to take the signatures and avator and rank img out of 1 style?

gfxhavenowner
10-18-2004, 06:50 PM
To remove an avatar, delete the following from either the postibt or postbit_legacy template:

<if condition="$show['avatar']">
<div class="smallfont">
&nbsp;<br /><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="$avatarurl" alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a>
</div>
</if>

Rank image(same template):

<if condition="$post['rank']"><div class="smallfont">$post[rank]</div></if>

Siganture(same template):

<if condition="$post['signature']">
<!-- sig -->
<div>
__________________<br />
$post[signature]
</div>
<!-- / sig -->
</if>

djjeffa
10-18-2004, 07:00 PM
Thanks good advice comming from a newbie lol J/K
any other advice that would help speed up the page?
I Know removing the image from the top would help but is there anything else I could do?

House_of_Crazed
10-18-2004, 10:58 PM
You could just strip the style, getting rid of all references to images and just use text links. But of course, this means, you'll have to edit every template to get rid of all images, LOL

*shrugs* Just a thought :)