Images resizing on home slider
-
When I add a featured image to a post, the images show up huge on the home slider. Is there a quick fix for this? I’ve already tried re-sizing the images in the WP image editor, as well as in photoshop…but the images still show up very large on the homepage slider.
Thanks
Mod
You are using a static front page, yes?
Mod
Yeah, I thought so. I noticed this happening on one of my blogs, where I just used this CSS in the child theme:
.homepage_pane img {display:none}
to make them go away, because I didn’t want them anyway. But on my other blog, I do want them to appear, and they show up just fine. The only difference between the two is that the first is a two-column format and the second is a three-column format.
Still looking into this.
Admin
Try adding this to your Custom CSS option:
.two-columns .homepage_pane img{
max-width: 317px;
}The theme basically assumes that the image is bigger in dimension than the width of that homepage pane. Will be fixed in the next update.
Admin
Try this instead:
.two-columns .homepage_pane img{
max-width: 317px;
width: auto;
}Admin
No, don’t put it in the main style.css file. Put it in the Graphene Options > Display > Custom CSS option.
Viewing 10 posts - 1 through 10 (of 11 total)
- 1
- 2
- You must be logged in to reply to this topic.