transparency issues with firefox

liunx

Guest
chech this link out

<!-- m --><a class="postlink" href="http://www.sbertalotto.com/midi_delight/">http://www.sbertalotto.com/midi_delight/</a><!-- m -->


In IE6 it looks fine I have a 3 column layout with a background image in the wrapper id. In firefox the 3 columns are not transparent and you cannot see the underlieing background image.

anyone have clue on how to fix this. I am using the background image in the wrapper ID because I want the column colors to stretch the whole page and just stop when one of the columns does. that would result in uneven columns and thats not what i want.

thanksFirst off, some of your tags are incorrect.

<option value="247" />
<li/>


OPTION and LI are not empty tags.
They need to nest an item:

<option>something</option>
<li>something</li>


Also, your CSS for Top10 is not correct:

#top10 { #DEDEDE;

Also, try:

background-color:transparent

instead of

background:transparentthanks for the tips, but it didnt work, does anyone know how to make a layer background transparent?

<!-- m --><a class="postlink" href="http://www.sbertalotto.com/midi_delight/This">http://www.sbertalotto.com/midi_delight/This</a><!-- m --> is the same as your other thread (<!-- m --><a class="postlink" href="http://www.webdeveloper.com/forum/showthread.php?s=&threadid=44437">http://www.webdeveloper.com/forum/showt ... adid=44437</a><!-- m -->)Fang is correct. The <div style="clear:both"></div> at the bottom of the DIV should clear up your problem in Firefox.
 
Back
Top