Link to home
Start Free TrialLog in
Avatar of nsitedesigns
nsitedesignsFlag for United States of America

asked on

images don't resize in 2 column layout

Why don't the images resize nicely in this two column layout?  When you resize to a smaller viewport, the images get super tiny.  My goal is to have the image display full width above the descriptive text on smaller screens.

beta site
http://e98.417.myftpupload.com/rad-structures-services/

screen shot
https://screencast.com/t/lqcTENf2

Here is code to two column layout
.five-sixths,
.four-sixths,
.one-fourth,
.one-half,
.one-sixth,
.one-third,
.three-fourths,
.three-sixths,
.two-fourths,
.two-sixths,
.two-thirds {
	float: left;
	margin-left: 2.564102564102564%;
}

.one-half,
.three-sixths,
.two-fourths {
	width: 48.717948717948715%;
}

.one-third,
.two-sixths {
	width: 31.623931623931625%;
}

.four-sixths,
.two-thirds {
	width: 65.81196581196582%;
}

.one-fourth {
	width: 23.076923076923077%;
}

.three-fourths {
	width: 74.35897435897436%;
}

.one-sixth {
	width: 14.52991452991453%;
}

.five-sixths {
	width: 82.90598290598291%;
}

.first {
	clear: both;
	margin-left: 0;
}

Open in new window

Avatar of Scott Fell
Scott Fell
Flag of United States of America image

Did you customize that css like that or is that what genesis came with?  It looks like it is from an old bootstrap?

The short answer is you want to use media queries.

@media (min-width: 576px) { 
   .one-half{width:100%}
 }


@media (min-width: 768px) { 
    .one-half{width:100%}
 }


@media (min-width: 992px) { 
    .one-half{width:50%}
}

@media (min-width: 1200px) { 
     .one-half{width:50%}
}

Open in new window


Using the code above, as the viewport gets below 992, the class  one-half will convert from 50% to 100% and do as you expect.

As much as you can, try and use what bootstrap has already set up though and don't try and manually modify it.
Hi

as it is a premium template you have Unlimited Updates, Support & Access to Detailed Tutorials (they also have a forum)..
You just have to login or contact them directly https://my.studiopress.com/themes/monochrome/

Also make sure you use the latest version.
ASKER CERTIFIED SOLUTION
Avatar of nsitedesigns
nsitedesigns
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of nsitedesigns

ASKER

None of the other solutions worked.  Had to scrap using columns and that finally provided me with the solution.