Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #54816
    Paul
    Participant

    Hi,

    We need to have to a animated logo using html5 or adobe edge suite. but not animated gif (bad colors). is there any way i can modify the php to get an edge anim load in place of the logo?

    this is the plugin:
    https://wordpress.org/plugins/edge-suite/

    or any other way you can suggest besides animated gif to get cross device responsive animated logo?

    thanks

    #54818
    Paul
    Participant

    i just found the animated svg method. what a pain!

    http://themesandco.com/snippet-target/logo/

    #54842
    Sakin
    Keymaster

    @Paul: So are you able to do that. Yes, animated logo with .gif is really hard one. In Catch Flames Pro, you have add plugin and do the coding. But for that you need to build child theme. For child theme you can check out http://catchthemes.com/blog/create-child-theme-wordpress/. For example, if you install “Edge Suite” plugin that you can add that plugin template code in child theme. So, just add the following code in your child theme functions.php file:

    function catchflames_logo() {
    	echo '<div id="site-logo">';
    	if( function_exists( 'edge_suite_view' ) ){ echo edge_suite_view(); }
    	echo '</div>';
    }
Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Animated logo using Edge (AOM files)’ is closed to new replies.