PDA

View Full Version : Logo Help


Gottcha
04-13-2006, 08:44 PM
Logo works fine in Internet Explorer but not in Firefox

Any ideas why?

www.fragtraders.com

350Chevy
04-13-2006, 09:24 PM
You might want to take this part out of your header as it does nothing and maybe your cause for the left image not showing.

<alt="" border="0"/></a>

If that don't work, try replacing your <logo> code with this one:

<!-- logo -->
<table border="0" cellpadding="0" cellspacing="0" width="100%" align="center">
<tr>
<td width="639" height="150" style="background-image: url(http://www.fragtraders.com/forums/images/misc/logo7_02.gif);" align="left" nowrap="nowrap"></td>
<td height="150" width="100%" style="background-image: url(http://www.fragtraders.com/forums/images/misc/logo7_03.gif);" align="center"></td>
<td width="158" height="150" align="right" valign="top" nowrap="nowrap">
<img src="http://www.fragtraders.com/forums/images/misc/logo7_05.gif" width="158" height="150" alt="" border="0" /></td>

</tr>
</table>
<!-- /logo -->

I saved that piece of code into an .html file and loaded it into firefox and it worked fine. ;)

If that doesn't work then it's something else that's messing up your header template because the above code does work in firefox for me.

Gottcha
04-13-2006, 09:56 PM
replaced the code and still the same problem ... not showing in FF

peterska2
04-13-2006, 10:30 PM
The code I get is not what 350Chevy has posted, so either you reverted it back again, or changed it in a different style.

Gottcha
04-13-2006, 10:34 PM
i changed that code to the above code ... both codes have the same problem in FF

peterska2
04-13-2006, 10:45 PM
ah, I looked at your source code and this is what it shows there

<!-- logo -->
<a name="top"></a>
<table border="0" cellpadding="0" cellspacing="0" width="100%" align="center">
<tr>
<td width="639" height="150" style="background-image: url(forums/images/misc/logo7_02.gif);" align="left" nowrap="nowrap"> <alt="" border="0"/></a></td>

<td height="150" width="100%" style="background-image: url(forums/images/misc/logo7_03.gif);" align="center"></td>
<td width="158" height="150" align="right" valign="top" nowrap="nowrap">
<img src="forums/images/misc/logo7_05.gif" width="158" height="150" alt="" border="0" /></a></td>

</tr>
</table>
<!-- /logo -->

350Chevy
04-13-2006, 10:59 PM
I agree, I still see that as your source as well and I've cleared cache.

If you'd like you can send me a PM with an user ID and password that has access to your Admin CP templates and I'll fix it for you.

Gottcha
04-13-2006, 11:10 PM
i changed the code to this:

<!-- logo -->
<table border="0" cellpadding="0" cellspacing="0" width="100%" align="center">
<tr>
<td width="639" height="150" style="background-image: url(http://www.fragtraders.com/forums/images/misc/logo7_02.gif);" align="left" nowrap="nowrap"></td>
<td height="150" width="100%" style="background-image: url(http://www.fragtraders.com/forums/images/misc/logo7_03.gif);" align="center"></td>
<td width="158" height="150" align="right" valign="top" nowrap="nowrap">
<img src="http://www.fragtraders.com/forums/images/misc/logo7_05.gif" width="158" height="150" alt="" border="0" /></td>

</tr>
</table>
<!-- /logo -->

still not working

I agree, I still see that as your source as well and I've cleared cache.

If you'd like you can send me a PM with an user ID and password that has access to your Admin CP templates and I'll fix it for you.

Sent you a pm

350Chevy
04-13-2006, 11:23 PM
Nevermind all my previous comments. Firefox handles some HTML differently than IE so your above code was "invalid" to Firefox. I simply changed it to:


<table border="0" cellpadding="0" cellspacing="0" width="100%" align="center" background="http://www.fragtraders.com/forums/images/misc/logo7_03.gif">
<tr>
<td align="left"><img src="http://www.fragtraders.com/forums/images/misc/logo7_02.gif"></td>
<td></td>
<td align="right"><img src="http://www.fragtraders.com/forums/images/misc/logo7_05.gif" width="158" height="150" border="0" align="right"></td>
</table>
<!-- /logo -->

and it worked.

Nothing fancy and not the cleanest of codes but it works. ;)

Gottcha
04-13-2006, 11:39 PM
Cool Thank You

350Chevy
04-13-2006, 11:43 PM
Anytime. :)