Fixed width mobile problems

Hi,

I would like to add a fixed width, I can do this by adding .container: {width: 950px;} however this adds a fixed width to the mobile site, is there anyway I can do this without effecting the mobile view?

Also I would like to reduce the left and right padding on the mobile view

Thanks

@Daveo

You can use CSS media queries for that like this

@media screen and (min-width: 767px) {
	.container {
		width: 950px;
	}
}	

It will make container width to 950px for devices with screen resolution higher than 767px. For mobile it will work the same way like it used to before.