saltarella
11-23-2008, 10:25 PM
Hello,
I have some links on my page, each link is a text + a flash object.
I would like the link to work indipendently where the user clicks, on the text or on the video, and the text to become underlined on mouse over.
Here the CSS
#content {text-decoration:none; color:#000000; outline: none;}
#content a:link {text-decoration:none; color:#000000; outline: none;}
#content a:active {text-decoration: underline; color:#000000; outline: none; }
#content a:visited {text-decoration: underline; color:#000000; outline: none;}
#content a:hover {text-decoration: underline; outline: none; color:#000000;}
and here the HTML code
<a href="selected/video/" class="videos">
<div class="description_title">TITLE<br />
<span class="description_Utitle"> Video Clip, 2002</span></div>
<div class="video">
<object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="117" height="99" border="0">
<param name="movie" value="selected/videos/video.swf" />
<param name="quality" value="high" />
<param name="wmode" value="transparent" />
<embed src="selected/videos/video.swf" wmode="transparent" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="117" height="99"></embed></object>
</div></a>
Everything works fine in Safari, but in Firefox if I click on the video the link doesnŽt work and the text is not underlined on mouse over. In IE is underlined but the link on the video doesnŽt work.
Does somebody knows what IŽm doing wrong?
Any help is really apprciated...
Thanks in advance.
I have some links on my page, each link is a text + a flash object.
I would like the link to work indipendently where the user clicks, on the text or on the video, and the text to become underlined on mouse over.
Here the CSS
#content {text-decoration:none; color:#000000; outline: none;}
#content a:link {text-decoration:none; color:#000000; outline: none;}
#content a:active {text-decoration: underline; color:#000000; outline: none; }
#content a:visited {text-decoration: underline; color:#000000; outline: none;}
#content a:hover {text-decoration: underline; outline: none; color:#000000;}
and here the HTML code
<a href="selected/video/" class="videos">
<div class="description_title">TITLE<br />
<span class="description_Utitle"> Video Clip, 2002</span></div>
<div class="video">
<object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="117" height="99" border="0">
<param name="movie" value="selected/videos/video.swf" />
<param name="quality" value="high" />
<param name="wmode" value="transparent" />
<embed src="selected/videos/video.swf" wmode="transparent" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="117" height="99"></embed></object>
</div></a>
Everything works fine in Safari, but in Firefox if I click on the video the link doesnŽt work and the text is not underlined on mouse over. In IE is underlined but the link on the video doesnŽt work.
Does somebody knows what IŽm doing wrong?
Any help is really apprciated...
Thanks in advance.