• Resolved chilliwax

    (@chilliwax)


    Hi, does anyone know how we can add a simple image below the very bottom footer on our page e.g. below the text: –

    ? Jewellery Online – By Alfred & Co. Jewellery 2018

    We just want to add a simple payments accepted logo that’s all.

    thanks in advance.

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hello chilliwax,

    Add below code into your current active child theme’s functions.php file or you can create custom plugin for it.

    
    add_action( 'storefront_footer', 'storefront_custom_image', 30);
    
    function storefront_custom_image() {
      echo '<img src="your_image_url" />';
    }
    

    Hope this will helps you.

    Thanks !

    Thread Starter chilliwax

    (@chilliwax)

    Thanks for the reply. Isn’t there any custom css we could just add instead?

    Yup!

    Something like this would work:

    .site-info:after {
        content: '';
        background-image: url(https://20k28w1i5xtz152fd42li172-wpengine.netdna-ssl.com/wp-content/uploads/2017/11/Pocket-Squares.jpg);
        display: block;
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    Result: https://a.mikey.link/nGg5UQ

    You might need to play around with the CSS and the image but that’s the general idea ??

    Thread Starter chilliwax

    (@chilliwax)

    genius!

    Thank you very much ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Add image below copyright footer’ is closed to new replies.