Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #871793

    danny
    Participant

    I’ve got a header that i’ve fixed as a sidebar. When I add widgets to the header it just goes into that small plus(+) thing rather than on the side. How do I do this?

    see – http://dannyhearn.me/blog/

    Thanks

    #872494

    Lely
    Moderator

    Hi There,

    That is how it works when fixed sidebar is used. It is build that way because there’s not enough space below the menu. You have extra space because you have five menu links only. Usually when using more than that all space will be used. It is not recommended to add more content below it. In case you insist, we can add using javascript. Please add this on Appearance > Customize > Custom Javascript:

    jQuery(function($){
    
    	$( "<h1>Title</h1><p>Content goes here</p>" ).insertAfter( $( ".x-nav-wrap.desktop" ) );
    
    });

    Hope this helps.