Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #443218

    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?

    #443234

    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.

    http://tweedvalleybikepatrol.org/

    #443249

    I’m just going to use the get_footer hook and add the content in a function.

    #443296

    Hi!

    Seems like you have already figured it out? :) Shall we mark the thread as resolved?

    Best regards,
    Yigit

    #443324

    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;
    }
    ?>
Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘How do I add a full width element under the main page/sidebar layout’ is closed to new replies.