Where is the CSS that would let me reduce the amount of overall left and right white space in Enfold? I am specifically trying to change it for screen sizes of 960-1139px, but can’t find the correct selector. I need less wasted space so my columns have more width at narrower screen sizes. Link to site: http://69.195.124.95/~threeced/
Thank you!
Hi,
You can add this on your custom.css or Quick CSS
@media only screen and (max-width: 989px) and (min-width: 768px) {
.responsive .container {
width: 800px;
}
}
@media only screen and (max-width: 989px) and (min-width: 768px) {
.responsive .container .twelve.units {
width: 800px;
}
}
Regards,
Ismael