Hi,
we have a layout that has a sidebar on the right but under that we want to have a full width element with partners logos/hotspots.
See: http://screencast.com/t/mpDr0NUMz
The only drag and drop element that sits outside of the sidebar framework is the full width slider. Is there a way of replicating this without using a slider?
Or would I have to use some PHP to maybe insert a new div before the footer?
Cancel that. I have just worked it out by using a colour section which has given me a full width section under the page/sidebar framework.
But I now have another problem.
Before addding the colour section my widget wasn’t showing in the sidebar. I have now added the colour section and the widget is now sitting below it.
I’m just going to use the get_footer hook and add the content in a function.
Hi!
Seems like you have already figured it out? :) Shall we mark the thread as resolved?
Best regards,
Yigit
Hi,
yes do please mark this as resolved.
And for anyone else wondering how to do this. I used the following in my functions.php file
<?php
add_action('get_footer', 'sponsors_logos');
function sponsors_logos() {
$content = 'mark up I want to add just above the footer goes in here';
echo $content;
}
?>