Jump to content
Sign in to follow this  
traqfitness

Help adding .flv logo

Recommended Posts

traqfitness

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

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

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

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×