Really strange..... this is a tough one

I am working on a site for a family member.

1.) I have a long string of links across the top navigation bar for all the product types. They are simple links whose formatting is controlled by CSS in the HEAD. The last 3 links in a line of 9 links do not work in IE7, FireFox, or OPera…and I cant figure out why for the life of me.

Why would the first 6 work…with the same CSS and the same lines of code and not the last 3??? I have looked for mistakes and found none.

The products navigation bar is called in an iframe so I can manage it as a separate page and divide up the code. I have tried changing from strict to transitional dtd to no avail.

2.) The watermark background image gets these white streaks going across it on some browsers. There is no code that I know that would make it do that. There is nothing calling anything to render any code driven graphics like horizontal rulers or tables.

luccatissue.com is the main page.

BELOW is the code for the NavBar page that gets called in by the iFrame.


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<HTML>
<HEAD>
	<TITLE>CHILD PAGE OF: www.LuccaTissue.com</TITLE>

	<META HTTP-EQUIV="Content-Script-Type" CONTENT="text/javascript"></META>
	<META HTTP-EQUIV="Content-Language" CONTENT="en-GB"></META>
	<META HTTP-EQUIV="Window-target" CONTENT="_top"></META>
	<META HTTP-EQUIV="Pragma" content="no-cache"></META>
	<META HTTP-EQUIV="imagetoolbar" CONTENT="no"></META>
	<META HTTP-EQUIV="Content-Script-Type" CONTENT="text/javascript"></META>
	
	<META NAME="no-email-collection" value="http://www.unspam.com/noemailcollection"></META>
	<META NAME="description" content="Toilet Tissue & Paper Towel Manufacturer"></META>
	<META NAME="robots" content="index,follow"></META>
	<META NAME="ROBOTS" CONTENT="NOARCHIVE"></META>
	<META NAME="GOOGLEBOT" CONTENT="NOSNIPPET"></META> 
	<META NAME="ROBOTS" CONTENT="NOSNIPPET"></META> 
	<META NAME="MSSmartTagsPreventParsing" content="TRUE"></META>
	<META NAME="copyright" content="2010 www.LuccaTissue.com ~ All rights reserved."></META>
	<META NAME="revisit-after" content="14 days"></META>

	<SCRIPT type="text/javascript" src="SCRIPTS/NoSelectText.js"></SCRIPT>
	<SCRIPT type="text/javascript" src="SCRIPTS/NoRightClick.js"></SCRIPT>
	<SCRIPT type="text/javascript" src="SCRIPTS/UnFrame.js"></SCRIPT>
	<SCRIPT type="text/javascript" src="SCRIPTS/OrphanRedirect.js"></SCRIPT>

	<STYLE type="text/css">

	a:link     {font-family: Arial Narrow, Sans-serif;
            color:#000000;
            text-decoration:none;
	    font-weight: normal;
            font-size:10pt}

	a:visited  {font-family: Arial Narrow, Sans-serif;
            color:#000000;
            text-decoration:none;
	    font-weight: normal;
            font-size:10pt}

	a:active   {font-family: Arial Narrow, Sans-serif;
            color:#000000;
            text-decoration:none;
	    font-weight: normal;
            font-size:10pt}

	a:hover    {font-family: Arial Narrow, Sans-serif;
            color:#000000;
            text-decoration:underline;
	    font-weight: bold;
            font-size:10pt}

	</STYLE>

</HEAD>
<BODY >

<span STYLE="color: #FFA824; font-weight: bold"> 

   
<a href="KraftTowel.html" target="Content">KRAFT ROLL TOWEL </a>||
<a href="WhtHardTowel.html" target="Content"> WHITE ROLL TOWEL </a>||
<a href="CenterPull.html" target="Content"> CENTER-PULL </a>||
<a href="MultiFold.html" target="Content"> MULTI-FOLD </a>|| 
<a href="JumboRoll.html" target="Content"> JUMBO ROLL </a>||
<a href="Coreless.html" target="Content"> CORELESS </a>||
<a href="Napkins.html" target="Content"> NAPKIN </a>|| 
<a href="IndRolls.html" target="Content"> INDIVIDUAL ROLL </a>||
<a href="HighYield.html" target="Content"> HIGH-YIELD & SPLIT-CORE </a>

</span>

</BODY>
</HTML>


checking the site in Firefox using the Firebug plugin…and it looks like the TopMenu iframe is overlapping the right side of the navigation below it. It’s current height is 75px. Setting it at around 40px might do it.

Hee hee… boy, I feel stupid.

Thanks. I knew it would be some oversight like that.

glad to help. :slight_smile:
I’ve had more than my share of problems like that. Amazing how a property value…or something as simple as a missing closing bracket or semi-colon can cause so many problems, eh?