PDA

View Full Version : [Pending] FX vs. IE ? Underline problem


mr.gamesbay
02-25-2005, 06:13 AM
Hi Com.

Take a look on the 2 pictures, the underline (links) is in FX aredisplayed different. I have only this miniproblem in the ArticlesSection. Can me someone tell why and how to fix it?

cinq
02-25-2005, 12:48 PM
Which links are you refering to ?

mr.gamesbay
02-25-2005, 02:19 PM
I don’t understand your message :-/ My English isn’t perfect.

Its a small design problem with Firefox and some links in your script (not only on my site).

KTBleeding
02-25-2005, 02:30 PM
mr. gamesbay, are you talking about how in Firefox the line underneath the link is a little further away from the text, but in IE they're not?

AuroraMike
02-26-2005, 05:59 AM
actually, look at the first thumbnail. The underlines are inconsistant with one another. The top box has them slightly spaced away from the text but the lower box has the underline almost immediately under the text. I use IE and don't see it myself but I've had a few of my Mozilla users tell me that many things in VB period look a little different than they do on IE.

mr.gamesbay
02-26-2005, 06:45 AM
Found it :)
The Problem was, the place of the "spanclass" Tag. The tag was/is placed behind the "a herf" Tag.

Here are the Firefox/Mozilla friendly Version:


Template: vbArticles_categorybit
Old:

<if condition="$parentcat==0"><br>
<a href="articles.php?action=viewcat&catid=$parentid">
<span class="smallfont"><b>$catname</b></span></a>
</if>


New:

<if condition="$parentcat==0"><br>
<span class="smallfont">
<a href="articles.php?action=viewcat&catid=$parentid"><b>$catname</b></a>
</span>
</if>


-------------------------------------------------------

Template: vbArticles_ARTICLESHELL

Old:
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<title>$vboptions[bbtitle] - $vbphrase[vbart_vbarticles]</title>
$headinclude
</head>
<body>
$header
$navbar


<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>

<!-- left side categories column -->
<td valign="top" width="30%">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">

<tr><td class="tcat">$vbphrase[vbart_main]</td></tr>
<tr><td class="alt1" align="left"><ul>

<li><a href="articles.php"><span class="smallfont">$vbphrase[vbart_vbarticles]&nbsp;$vbphrase[vbart_main]</span></a></li>

<if condition="$permissions['vbarticlespermissions'] & CANSUBMITARTICLES">
<if condition="$bbuserinfo[userid]">
<li><a href="articles.php?action=submitarticle"><span class="smallfont">$vbphrase[vbart_submitnew]</span></a></li>
</if></if>

<if condition="$bbuserinfo[userid]"><li><a href="articles.php?action=viewfav"><span class="smallfont">$vbphrase[vbart_fav]</span></a></li></if>


<if condition="$vbart_options[vbartallowrss]"><li><a href="articles.php?action=rss"><span class="smallfont">$vbphrase[vbart_syndicate]</span></a></li></if>

</ul></td>
</tr>

<tr><td class="thead">$vbphrase[vbart_artcats]</td></tr>
<tr><td class="alt1" align="left">$catlistbit</td>
</tr>

<tr><td class="thead">$vbphrase[vbart_searchart]</td></tr>
<tr><td class="alt1" align="left">
<form action="articles.php" method="post" enctype="multipart/form-data">
<input type="hidden" name="action" value="dosearcharticle" />
<input type="text" name="keywords" size="20"><br>
<select name="searchby">
<option value="searchall" selected>$vbphrase[vbart_searchall]
<option value="title">$vbphrase[vbart_searchtitle]
<option value="content">$vbphrase[vbart_searchcontent]
<option value="author">$vbphrase[vbart_searchauthor]
</select><br><br>
<input type="submit" class="button" value="$vbphrase[vbart_searchart]" accesskey="s" />
</form>

</td>
</tr>


<tr><td class="thead">$vbphrase[vbart_authorlist]</td></tr>
<tr><td class="alt1" align="center"><a href="$vboptions[bburl]/articles.php?action=authorlist"><span class="smallfont">$vbphrase[vbart_viewauthorlist]</span></a><BR><BR><span class="smallfont">$vbphrase[vbart_viewauthorlistdesc] $vbphrase[vbart_vbarticles].</span></td>
</tr>


<if condition="$vbart_options['vbartshowstats']">
<tr><td class="thead">$vbphrase[vbart_stats]</td></tr>
<tr><td class="alt1" align="left">$statsbit</td>
</tr>
</if>

</table>

<!-- please keep intact if possible, thanks - cinq :) -->
<br><br><div align="center">
<a href="http://www.vbarticles.com" target="_blank"><img src="http://www.vbarticles.com/images/poweredby.gif" border="1"></a></div>
<br><br>
<!-- please keep intact if possible, thanks - cinq :) -->

</td>
<!-- /left side categories column -->

<!-- right side content column -->
<td valign="top" width="70%">

$ARTICLEHTML


</td>
<!-- right side content column -->


</tr>
</table>


<br>
$footer
</body>
</html>

NEW:
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<title>$vboptions[bbtitle] - $vbphrase[vbart_vbarticles]</title>
$headinclude
</head>
<body>
$header
$navbar


<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>

<!-- left side categories column -->
<td valign="top" width="30%">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">

<tr><td class="tcat">$vbphrase[vbart_main]</td></tr>
<tr><td class="alt1" align="left"><ul>

<li><span class="smallfont"><a href="articles.php">$vbphrase[vbart_vbarticles]&nbsp;$vbphrase[vbart_main]</a></span></li>

<if condition="$permissions['vbarticlespermissions'] & CANSUBMITARTICLES">
<if condition="$bbuserinfo[userid]">
<li><span class="smallfont"><a href="articles.php?action=submitarticle">$vbphrase[vbart_submitnew]</a></span></li>
</if></if>

<if condition="$bbuserinfo[userid]"><li><span class="smallfont"><a href="articles.php?action=viewfav">$vbphrase[vbart_fav]</a></span></li></if>


<if condition="$vbart_options[vbartallowrss]"><li><span class="smallfont"><a href="articles.php?action=rss">$vbphrase[vbart_syndicate]</a></span></li></if>

</ul></td>
</tr>

<tr><td class="thead">$vbphrase[vbart_artcats]</td></tr>
<tr><td class="alt1" align="left">$catlistbit</td>
</tr>

<tr><td class="thead">$vbphrase[vbart_searchart]</td></tr>
<tr><td class="alt1" align="left">
<form action="articles.php" method="post" enctype="multipart/form-data">
<input type="hidden" name="action" value="dosearcharticle" />
<input type="text" name="keywords" size="20"><br>
<select name="searchby">
<option value="searchall" selected>$vbphrase[vbart_searchall]
<option value="title">$vbphrase[vbart_searchtitle]
<option value="content">$vbphrase[vbart_searchcontent]
<option value="author">$vbphrase[vbart_searchauthor]
</select><br><br>
<input type="submit" class="button" value="$vbphrase[vbart_searchart]" accesskey="s" />
</form>

</td>
</tr>


<tr><td class="thead">$vbphrase[vbart_authorlist]</td></tr>
<tr><td class="alt1" align="center"><span class="smallfont"><a href="$vboptions[bburl]/articles.php?action=authorlist">$vbphrase[vbart_viewauthorlist]</a></span><BR><BR><span class="smallfont">$vbphrase[vbart_viewauthorlistdesc] $vbphrase[vbart_vbarticles].</span></td>
</tr>


<if condition="$vbart_options['vbartshowstats']">
<tr><td class="thead">$vbphrase[vbart_stats]</td></tr>
<tr><td class="alt1" align="left">$statsbit</td>
</tr>
</if>

</table>

<!-- please keep intact if possible, thanks - cinq :) -->
<br><br><div align="center">
<a href="http://www.vbarticles.com" target="_blank"><img src="http://www.vbarticles.com/images/poweredby.gif" border="1"></a></div>
<br><br>
<!-- please keep intact if possible, thanks - cinq :) -->

</td>
<!-- /left side categories column -->

<!-- right side content column -->
<td valign="top" width="70%">

$ARTICLEHTML


</td>
<!-- right side content column -->


</tr>
</table>


<br>
$footer
</body>
</html>

-------------------------

Template: vbArticles_favbit (This one looks realy bad in Firefox)

Old:
<tr>
<td class="alt1" align="left" width="50%"><a href="articles.php?action=viewarticle&artid=$favarticleid"><span class="smallfont">$title</span></a><if condition="$updated==1"><span class="smallfont"> - <i>$vbphrase[vbart_updated]!</i></span></if><br><span class="smallfont">$vbphrase[vbart_category]: <i>$category</i></span></td>
<td class="alt1" align="center" width="20%"><span class="smallfont">$author<br></span><span class="time">($date)</span></td>
<td class="alt1" align="center" width="20%">

<a href="articles.php?action=printarticle&artid=$favarticleid" target="_blank"><img src="$stylevar[imgdir_button]/printer.gif" border="0" alt="$vbphrase[vbart_printart]"></a>&nbsp;<a href="articles.php?action=sendarticle&artid=$favarticleid" target="_blank"><img src="$stylevar[imgdir_button]/sendtofriend.gif" border="0" alt="$vbphrase[vbart_sendarticle]"></a>

</td>

<td class="alt1" align="center" width="10%">
<input type="checkbox" name="chkarticleunfav[]" value="$favarticleid">
</td>

</tr>

New:
<tr>
<td class="alt1" align="left" width="50%"><span class="smallfont"><a href="articles.php?action=viewarticle&artid=$favarticleid">$title</a></span><if condition="$updated==1"><span class="smallfont"> - <i>$vbphrase[vbart_updated]!</i></span></if><br><span class="smallfont">$vbphrase[vbart_category]: <i>$category</i></span></td>
<td class="alt1" align="center" width="20%"><span class="smallfont">$author<br></span><span class="time">($date)</span></td>
<td class="alt1" align="center" width="20%">

<a href="articles.php?action=printarticle&artid=$favarticleid" target="_blank"><img src="$stylevar[imgdir_button]/printer.gif" border="0" alt="$vbphrase[vbart_printart]"></a>&nbsp;<a href="articles.php?action=sendarticle&artid=$favarticleid" target="_blank"><img src="$stylevar[imgdir_button]/sendtofriend.gif" border="0" alt="$vbphrase[vbart_sendarticle]"></a>

</td>

<td class="alt1" align="center" width="10%">
<input type="checkbox" name="chkarticleunfav[]" value="$favarticleid">
</td>

</tr>

cinq
02-26-2005, 11:50 PM
Thanks for going through the templates, gamesbay.
I will make the changes in these templates you highlighted in the next revision.

Do update your post if you find other templates to be editted, as I will refer to this thread for the changes.
Thanks again :D

mr.gamesbay
02-27-2005, 07:22 AM
Thanks for going through the templates, gamesbay.
I will make the changes in these templates you highlighted in the next revision.

Do update your post if you find other templates to be editted, as I will refer to this thread for the changes.
Thanks again :D

NP :)