• Hi Team,
    I am using custiomizr theme and it’s exceptionally best theme for me. But since few days i mind that the left sidebar is stick after header and instead of moving after main content. The problem appears on home page as well as on individual blog post / pages also. I want to position this left side bar after main content.
    Can you please help on this?

Viewing 9 replies - 1 through 9 (of 9 total)
  • Thread Starter ergkranjan

    (@ergkranjan)

    Anyone, Please help on this.

    Thread Starter ergkranjan

    (@ergkranjan)

    Hi team,
    Anyone please help on this.

    Site link would help.

    Try checking Customise>Sidebars>Responsive settings.

    Thread Starter ergkranjan

    (@ergkranjan)

    http://www.sqlrelease.com

    @rdellconsulting, I have checked that option

    Please help on this.

    Not sure I understand. Are you looking to move the left sidebar below the posts? On any viewport size?

    Thread Starter ergkranjan

    (@ergkranjan)

    Yes i want to move left side bar below the main content on small devices but not on big screens (laptops/desktops).

    not possible ( i think) – it alwas orders them left middle right.I might be wrong as this used to be the case but may have been fixed in a newer release.

    That’s why I stopped using left sidebars completely as it annoyed me.

    I would recommend designing for mobile first these days.

    @ergkranjan
    That feature acts via javascript and it’s based on the window’s width.
    If you want to enable it just in mobiles you have to add something of the sort in your child-theme functions.php:

    add_filter('tc_opt_tc_block_reorder', 'reoder_blocks_only_in_mobiles' );
    function reoder_blocks_only_in_mobiles( $bool ){
      return $bool && wp_is_mobile();
    }

    Hope this helps.

    p.s.
    FYI wp_is_mobile worpdress function doesn’t discriminate between tablets an smartphones.

    Thread Starter ergkranjan

    (@ergkranjan)

    Great @d4z_c0nf!
    You rocked……..
    Thanks and have a great day ahead.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Left side bar is not moving after main content’ is closed to new replies.