Tagged: , ,

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #27863

    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!

    #135632

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘CSS to Control Overall Page Margins’ is closed to new replies.