Shop Categories

X

Reply To: SIDE BAR REDUCTION

Home Forums Fury Theme SIDE BAR REDUCTION Reply To: SIDE BAR REDUCTION

#27544
Zex
Moderator

Hi,
use the following code to reduce the sidebar width on screens between the 992 and 1200 px.

@media (min-width: 992px){
.col-lg-4 {
    -ms-flex: 0 0 15%!important;
    flex: 0 0 15%!important;
    max-width: 15%!important;
}

.col-lg-8 {
    -ms-flex: 0 0 85%!important;
    flex: 0 0 85%!important;
    max-width: 85%!important;
}
}
  • This reply was modified 3 years, 4 months ago by Zex.
  • This reply was modified 3 years, 4 months ago by Zex.