• Resolved bgva2005

    (@bgva2005)


    Hi everyone, I need to locate a image inside my omega footer, this image must cover all footer.

    Reference: apps.quito.gob.ec

    like you can see currently it is only in the center.

    Please your help.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi bgva2005. Maybe someone over on the theme support forum has already done that and has the answer.

    Thread Starter bgva2005

    (@bgva2005)

    Hi please some help?

    Did you check over on the theme support forum?

    Thread Starter bgva2005

    (@bgva2005)

    solution:
    Into the child theme, function.php

    1.- Inactivate the footer functions:

    function unhook_thematic_functions()
    	{
    	   remove_action('omega_footer', 'omega_footer_insert'); //elimina la funciòn del footer
    	   remove_action('omega_footer_insert', 'omega_default_footer_insert' );
        }
        add_action('init','unhook_thematic_functions');

    2.- Create a new omega_after_footer

    function omega_footer_insertNew() {
    
    	//echo '<div class="footer-content footer-insert">';
    
    	echo'<p class="wrapfooter">  <img src="Archivos/Imagenes/F_03_GraficoFooter.png"> </p>' ;
    
    }
    
        add_action('omega_after_footer', 'omega_footer_insertNew');
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘image inside footer's Omega theme’ is closed to new replies.