Hi there,
Thanks for an awesome theme. I’m using the Portfolio Grid widget to display a one-column list of Portfolio entries with Use Special One-Column Layout enabled.
All the featured images are 250px by 370px, however they are being displayed at height: 1034px; width: 686px.
They display this way no matter if I have the image settings to stretch or actual size.
When I look at the source code, these sizes are being set via inline styles.
Please advise. Thank you for your valuable time.
Hey treeoflifeaz!
Thank you for using the theme. If you don;tmind providing us with a little more info like the link to your website, we’ll be happy to provide you with a response once we have a better understanding of the situation. The column will inherit the size of the container so you might want to upload larger images or select 2 or 3 columns for the portfolio grid.
Regards,
Ismael
Thanks Ismael,
The size of the images are way beyond the container. Here is the url for your review. Thank you
Hey!
Using !important on a general class can cause issues like this. Specifically, you have:
.main_color {
width: 1000px !important;
margin: 0 auto;
padding: 10px;
}
Which should not have a width in any circumstance since its a color class. Removing that will let the single column portfolio correctly stay within the confines of the parent container.
Cheers!
Devin