Increase Main area width

I am using the pretty cool Travelify theme with the right side bar option.
How do i increase the width of the Main area. Picture will do a better explanation.
Pic: https://drive.google.com/open?id=0BzoS3oOkVoTtRjd0YkxpbjZ5dGc
Thanks.

Hi @uili876,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Travelify Other Options


div#primary {
    width: 70%;
}
div#secondary {
    width: 26%;
}

@media only screen and (max-width: 767px){
	div#primary {
    width: 100%;
}
div#secondary {
    width: 100%;
}

}

Best Regards,
Movin