Wrapper or Content width

I would like either to change the width of the wrapper from 1240px to 1200px:

#Wrapper {
  width: 1240px;
  margin: 0px auto;
  overflow: hidden;
}

Or that of the content to 1240px in order to leave out any padding:

.with_aside .content_wrapper {
width: 1240px;
margin: 0 auto;
}

The issue is that while it works in regular view, when I view it on a smaller screen, such as a smart phone, it completely removes all the content within.

Is there an alternative way to do this?

Cheers in advance!

Comments

Sign In or Register to comment.