SupportCategory: Wordpress ThemesRemove Sidebar in mobile
vanessa asked 6 years ago

I would like to remove my left sidebar on mobile pages, or at least have it appear below the primary content. How can I do that?

1 Answers
eDataStyle Staff answered 6 years ago

Hello Can you please add bellow css inside customize custom css…

@media screen and (max-width: 767px) {
	#left-sidebar{
		display:none!important;	
	}
}

Thanks