How can I embed, and hyperlink a SWF file on my Wordpress theme?
I run a website, and I've received creative from an advertiser. It came in the form of a swf file. I need to place it in my Wordpress theme, and make it so that when people click on it, it takes them to a specific website. I know where the code that needs modification is, but I don't know the required html to do this. I imagine it goes inside a div, and starts with <a href= something or other. But that's about all I know. Any help?
Public Comments
- Best place to go for html tags and what they do is http://www.htmlcodetutorial.com/
- You're unlikely to get specific-enough help on this forum, your best bet is to ask at the friendly WordPress support site [1] - turnaround time is usually very quick. Be sure to mention which theme you're using, and if you mention your URL you'll most likely get someone take a look and tell you *exactly* what to do. Approximately however... you need to: <object width="800" height="200"> <param name="movie" value="somefilename.swf"> <!-- put something here for browsers that can't embed stuff --> </object> The SWF probably has a link or links embedded in it already, but if not, just wrap it in an anchor thus: <a href="http://yourlink.html"><object width="800" height="200"> <param name="movie" value="somefilename.swf"> <!-- put something here for browsers that can't embed stuff --> </object></a>
Powered by Yahoo! Answers