Sidebar cut in tablet/mobile view, please help

  • Unknown's avatar

    In the Adelle theme, the sidebar falls to the bottom on tablet/mobile. When it falls down, the sidebar is cut off (in height, not showing everything below). How can I make the whole sidebar visible (in height, and also centered)?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    I’m seeing all of your sidebar widgets on my iPhone and iPad Air right now. The shift of the sidebar below the content happens at 1031px and narrower, so we can construct a media query to center align the widgets below the content at 1031px and narrower like this.

    @media screen and (max-width: 1031px) {
    	#secondary {
    		width: 100%;
    		max-width: 680px;
    		text-align: center;
    		float: left;
    	}
    	.widget {
    		width: 250px;
    		margin-left: auto;
    		margin-right: auto;
    	}
    	.widget-title {
    		text-align: center;
    	}
    }
  • Unknown's avatar

    Thank you so much! That solved my problem :)

  • Unknown's avatar
  • The topic ‘Sidebar cut in tablet/mobile view, please help’ is closed to new replies.