Removing background Color Kills menu System?

liunx

Guest
I have a problem with my menu system. I need to make the Div box Clear, so that the red bar behind it shows though. the only problem is that when I remove the background color of the Div, it somehow places a gap in the menu system, that makes it brake. I dont know why, as I only change that one line, and it dies.

Here (<!-- m --><a class="postlink" href="http://www.gslc.qld.edu.au/Newpage/1/GSLC(CSSMenu">http://www.gslc.qld.edu.au/Newpage/1/GSLC(CSSMenu</a><!-- m -->)/index.htm) is a link to a site that works.

And Here (<!-- m --><a class="postlink" href="http://www.gslc.qld.edu.au/Newpage/backup/GSLC(CSSMenu">http://www.gslc.qld.edu.au/Newpage/backup/GSLC(CSSMenu</a><!-- m -->)/index.htm) is my first link again, that does not work.

Now, the ONLY difference between these 2 page is the following code.

Code:

//This is in the CSS of the one that works.
#menu h2 {
color: #000;
background: #fff;
border-width: 0px;
}

//This is in the CSS of the one that DOES NOT WORK!!!!
#menu h2 {
color: #000;
border-width: 0px;
}



Ok, Other then the above line, the files are a copy and paste. I made 2 folders, and changed that one line. I dont know why that kills it, but it is rather annoying.

If anyone has any idea why removing the background color should kill my menu system, please inform me, as I have no idea anymore.

WofenHmm.. it only screws up in IE.. >_>
Maybe try a background: transparent; ?Nope, did not seem to work.
I might have to flood the area with a slice of the image behind it. Did not really want to do this, but its about the only thing I can think of atm.

WofenI got it too work by placing a image in the background of the div box.

Anyone know why this happened?

Wofen
 
Back
Top