html - Site links working in Firefox but not in Chrome or Safari -
i'm having trouble getting site links work in chrome , safari. works fine in firefox don't show links in chrome , safari. have link header , "bio", "view reel" , e-mails. can tell me how fix please? code below. thank you!
<!doctype html> <html xmlns="http://www.studiogo.tv"> <body align="center"> <link rel="stylesheet" href="format.css"> <map id="home"> <area shape="rect" coords="134,10,902,151" href="http://www.studiogo.tv" /> </map> <map id="links"> <area shape="rect" coords="325,165,426,188" href="http://www.bradgo.com/edit" alt="view reel" title="view reel" /> <area shape="rect" coords="326,187,362,207" href="http://www.studiogo.tv/bgobio.html" alt="bgobio" title="bgobio" /> <area shape="rect" coords="718,169,754,189" href="http://www.studiogo.tv/ngobio.html" alt="ngobio" title="ngobio" /> <area shape="rect" coords="325,135,480,153" href="mailto:bradgo@gmail.com?subject="the hush project"" alt="" title="" /> <area shape="rect" coords="720,136,884,154" href="mailto:nicolekgo@gmail.com?subject="the hush project"" alt="" title="" /> </map> <table border="0" width="95%" align="center"> <tr> <td colspan-"1" align="center" bgcolor="black"><img src="studiogo_banner.png" usemap="#home" border="0"></td> </tr> <tr> <td colspan="1" align="center" bgcolor="black" border="0" width="95%"> <body align="center"> <iframe width="560" height="315" src="http://www.youtube.com/embed/ialx5oqppv8" frameborder="0" allowfullscreen></iframe> </br> </body> </td> </tr> <tr> <td colspan="1" align="center" bgcolor="black"><img src="studiogo_bottom.png" usemap="#links" border="0"></td> </tr> </table> </body> </html>
hard without example can start this:
<area shape="rect" coords="325,135,480,153" href="mailto:bradgo@gmail.com?subject='the hush project'" alt="" title="" /> <area shape="rect" coords="720,136,884,154" href="mailto:nicolekgo@gmail.com?subject='the hush project'" alt="" title="" />
you using quotation marks mail subject , messes link because starting " of subject closes href. should replace quotation marks of subject '.
Comments
Post a Comment