Reply To: Sidebar width

Home Forums Support Sidebar width Reply To: Sidebar width

Home Forums Support Sidebar width Reply To: Sidebar width

#160085
Tom
Lead Developer
Lead Developer

Ah, so you need to decrease the width of the sidebars even more..

Try this CSS:

@media (min-width: 1025px) {
    .content-area.grid-70 {
        width: 80%;
    }
    .sidebar.grid-15 {
        width: 10%;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .content-area.tablet-grid-70 {
        width: 80%;
    }
    .sidebar.grid-15 {
        width: 10%;
    }
}