traqfitness 0 Report post Posted May 10, 2011 OI have a flash logo with animation I want to embed into the top left part of my website where the logo goes. Any idea how to do this? I am new at this www.traq3dfitness.com Share this post Link to post Share on other sites
cmunns 16 Report post Posted May 10, 2011 You will have to use a filter hook to place your own custom animation file. ` add_filter ('pagelines_site_logo', 'my_site_logo'); function my_site_logo($site_logo){ $site_logo = SOME CUSTOM HTML MARKUP return $site_logo; } ` That's the gist anyway. Add it to your -Base functions.php file. Share this post Link to post Share on other sites
benedwards 0 Report post Posted May 26, 2011 Having issue doing this myself and could use a quick assist please. what am i using to bracket my custom HTML markup? add_filter ('pagelines_site_logo', 'my_site_logo'); function my_site_logo($site_logo){ $site_logo = echo <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" width="468" height="60" id="mymoviename">; echo <param name="movie" value="http://airgunexporter.palvellagroup.com/images/flashvortex.swf'>http://airgunexporter.palvellagroup.com/images/flashvortex.swf" /> ; echo <param name="quality" value="high" /> ; echo <param name="bgcolor" value="#ffffff" />; echo <embed src="http://airgunexporter.palvellagroup.com/images/flashvortex.swf'>http://airgunexporter.palvellagroup.com/images/flashvortex.swf" quality="high" bgcolor="#ffffff" width="468" height="60" name="mymoviename" align="" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"> ; echo </embed> ; echo </object> ; return $site_logo; Share this post Link to post Share on other sites
catrina 103 Report post Posted May 27, 2011 I think you're going to have to add the logo to a DIV layer (add <div class="flvlogo"> and </div> on either side of the code) Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites