@treboroom: Hi Robert,
The site you are referring to uses Full Width like our theme Clean Journal Pro, Full Frame Pro, Catch Flames Pro and Adventurous Pro. Check out at http://catchthemes.com/themes/category/premium/. But Catch Responsive Pro uses maximum fixed width. So, changing to this theme will be little difficult and you need lot of custom css. Best is to change the theme. Otherwise, try the following css:
.site {
width: 100%;
}
#feature-slider .cycle-slideshow {
max-width: 100%;
}
#feature-slider .cycle-slideshow img {
width: 100%;
height: auto;
}
/* 460px; */
@media screen and (min-width: 1100px) {
#header-featured-image,
#masthead,
#promotion-message,
#featured-content,
.site-content,
#colophon {
margin: 0 auto;
width: 460px;
}
/* 520px; */
@media screen and (min-width: 1100px) {
#header-featured-image,
#masthead,
#promotion-message,
#featured-content,
.site-content,
#colophon {
width: 520px;
}
/* 560px; */
@media screen and (min-width: 1100px) {
#header-featured-image,
#masthead,
#promotion-message,
#featured-content,
.site-content,
#colophon {
width: 560px;
}
/* 660px; */
@media screen and (min-width: 1100px) {
#header-featured-image,
#masthead,
#promotion-message,
#featured-content,
.site-content,
#colophon {
width: 660px;
}
/* 740px; */
@media screen and (min-width: 1100px) {
#header-featured-image,
#masthead,
#promotion-message,
#featured-content,
.site-content,
#colophon {
width: 740px;
}
/* 960px; */
@media screen and (min-width: 1100px) {
#header-featured-image,
#masthead,
#promotion-message,
#featured-content,
.site-content,
#colophon {
width: 960px;
}
/* 1040px; */
@media screen and (min-width: 1100px) {
#header-featured-image,
#masthead,
#promotion-message,
#featured-content,
.site-content,
#colophon {
width: 1040px;
}
/* 1100px; */
@media screen and (min-width: 1100px) {
#header-featured-image,
#masthead,
#promotion-message,
#featured-content,
.site-content,
#colophon {
width: 1100px;
}
/* 1200px; */
@media screen and (min-width: 1200px) {
#header-featured-image,
#masthead,
#promotion-message,
#featured-content,
.site-content,
#colophon {
width: 1200px;
}
Sorry, I cannot make 100% sure about this css. It’s advance.