• Hi,

    I’m really new to this and installed my site a few days ago. I am using SmartLine Lite as a theme and I just want to add a footer image like the image in my header. I thought this would be a relatively simple process but I’ve spent ages trying to do this!! What am I missing?

Viewing 2 replies - 1 through 2 (of 2 total)
  • There isn’t functionality to do that out-of-the-box with this theme, you would need to modify the footer.php file using a Child Theme by adding a couple of columns, one for your footer image and one for the existing footer text.

    <footer id="footer" class="clearfix" role="contentinfo">
        <div class="footer-column">
            footer image
        </div>
        <div class="footer-column">
            <div id="footer-text">
                <?php do_action('smartline_footer_text'); ?>
            </div>
        </div>
    </footer>

    You can then add this to your style.css file:

    footer .footer-column { 
        float: left; 
        margin-left: 2.5%; 
        overflow: hidden; 
    }
    footer .footer-column:first-child {
        margin-left: 0;
    }

    Hope this helps.

    Correction:

    footer .footer-column { 
        width: 48.75%;
        float: left; 
        margin-left: 2.5%; 
        overflow: hidden; 
    }
    footer .footer-column:first-child {
        margin-left: 0;
    }
Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Footer Image’ is closed to new replies.