Site logo

Archived topic

Widget Area Before Content

5 replies · Started by Anonymous on October 14, 2015

Viewing posts 1–6 of 6

Hi Guys,

I whant to display the widget area befor site-content in mobile and tablet view.

How can I do this?

Thanks in advance
Andreas

Give this CSS a try:

@media (max-width: 768px) {
      .site-content {
            display: table-footer-group;
      }
      .sidebar {
            display: table-header-group;
      }
}

Hi Tom,

thanks for the quick responce. The CSS does not work for me...

I found a solution! Look at this

@media only screen and (max-width: 1023px) {
	.site-content {
		display: table;
	}
    	.site-main {
		display: table-footer-group; float: none;
	}
    	.sidebar {
		display: table-header-group; float: none;
	}
}

Glad it's working. Thanks for sharing your solution.

This archived topic is closed to new replies.