Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Sidebar underneath on WooCommerce pages Reply To: Sidebar underneath on WooCommerce pages

#237442
timbarden
Participant

The #containerthat contains the #content div is full width so naturally the #sidebar will move below it.

Adding the following to the container div (at min-width 768px) would be one way to get the result you’re after:

float: left;
width: calc(100% - 330px);
padding-right: 30px;