Thanks Dan! The slideshow will scale to fit the container it’s in. Right now that .slider container has a max width, but nothing scaling it down lower than that.
If you add percentages to the two columns, they will size fluidly like the slideshow:
.hp-container .slider {
max-width: 652px;
height: 350px;
float: left;
width: 66%;
}
.hp-text {
float: right;
max-width: 318px;
margin: 15px 0 0 10px;
width: 32%;
}
But they will have a fluid height as well and the theme would have to be modified to support rows with a fluid height so that backgrounds will resize with the content.
Thanks Josh!
Giving the container width:100% in the media query, as you suggested did the trick.
(I preferred not to give the containers fluid sizes, but to resize them via a media query)
Thanks again
Dan
-
This reply was modified 8 years, 4 months ago by
Dan Stramer.