Bexter |
02-10-2009 07:55 AM |
Is anyone having a problem with the quote/edit/reply etc buttons scaling down?
I've just looked at my source code.
This is on the demo site
Code:
<!-- / edit note -->
<div style="margin-top: 10px;" align="right"><!-- controls -->
<a href="http://www.fniv.it/board/newreply.php?do=newreply&p=8150" rel="nofollow">
<img title="Reply With Quote" src="http://www.fniv.it/board/styles/vB_Dark_G/images/buttons/quote.gif" alt="Reply With Quote" border="0"></a>
And on my site
Code:
<a href="http://www.gamerstyle.com/forums/newreply.php?do=newreply&p=46998" rel="nofollow">
<img title="Reply With Quote" src="styles/vB_Dark_G/images/buttons/quote.gif" alt="Reply With Quote" border="0" width="70" height="22"></a> <a href="http://www.gamerstyle.com/forums/newreply.php?do=newreply&p=46998" rel="nofollow" onclick="return false"
The width and height have been added into the code and my images are rescaled to whatever it says. It makes the quote button unreadable.
Nothing in the templates gives it away as to why it's doing it either:
Code:
<!-- controls -->
<if condition="$post['editlink']">
<img style="display: none" id="progress_$postid" src="$stylevar[imgdir_misc]/progress.gif" alt="$vbphrase[loading_editor_please_wait]" />
<a href="$post[editlink]" name="vB::QuickEdit::$post[postid]"><img src="$stylevar[imgdir_button]/edit.gif" alt="$vbphrase[edit_delete_message]" border="0" /></a>
</if>
<if condition="$post['forwardlink']">
<a href="$post[forwardlink]"><img src="$stylevar[imgdir_button]/forward.gif" alt="$vbphrase[forward_message]" border="0" /></a>
</if>
<if condition="$post['replylink']">
<a href="$post[replylink]" rel="nofollow"><img src="$stylevar[imgdir_button]/<if condition="$post['forwardlink']">reply_small<else />quote</if>.gif" alt="$vbphrase[reply_with_quote]" border="0" /></a>
</if>
I'm wondering if it's to do with the reply_small bit and is in other parts of the template as well?
|