Reply To: SIDE BAR REDUCTION
Home › Forums › Fury Theme › SIDE BAR REDUCTION › Reply To: SIDE BAR REDUCTION
July 29, 2020 at 5:00 pm
#27544
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;
}
}