vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vbArticles (https://vborg.vbsupport.ru/forumdisplay.php?f=106)
-   -   [Pending] FX vs. IE ? Underline problem (https://vborg.vbsupport.ru/showthread.php?t=77008)

mr.gamesbay 02-25-2005 06:13 AM

[Pending] FX vs. IE ? Underline problem
 
1 Attachment(s)
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:
Code:

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

New:
Code:

<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:
Code:

$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:
Code:

$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:
Code:

<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:
Code:

<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

Quote:

Originally Posted by cinq
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 :)


All times are GMT. The time now is 10:39 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01074 seconds
  • Memory Usage 1,781KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (6)bbcode_code_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (8)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete