Log in

View Full Version : cant figure this out...



soccerprodigy777
01-31-2008, 11:42 AM
Hey, im new to the forum, but have a problem with a site im working on that i cant figure out for the life of me...the address is: http://www.geocities.com/soccerprodigy777

I have a flash video slideshow on the page, and also have drop down menus above it in the navigation bar...i got them here...the problem is that the flash slideshow is physically blocking the drop down menus when you roll over them (the 3 links on the right are the ones containing the menus). How do i fix this? any help would be great. Thanks.

Medyman
01-31-2008, 02:19 PM
Have a look at this:
http://joshuaink2006.johnoxton.co.uk/blog/82/flash-content-and-z-index

soccerprodigy777
02-01-2008, 12:51 AM
hey!! that really helped!!! thanks a bunch...it was embarrasingly easy...

soccerprodigy777
02-01-2008, 04:44 AM
I managed to get the dropdown menu to display properly....now, as an added effect, i was trying to make the cells of the menu transparent...i used this code
opacity:0.4;filter:alpha(opacity=40) to the CSS defining the cells...but it affected not only the cell, but the link text as well...which was not the goal...so how do i add the opacity to the cell itself?

Medyman
02-02-2008, 02:29 AM
You might need to explicitly define the text as having 100% opacity

Inline it would be...

<span style='opacity:1.0;filter:alpha(opacity=100);'>Text</span>

Though you should leave CSS out of markup (i.e. move it to an external file).