Hello!
In order to display the images full-width, you’ll need to do a few things. First, you’ll want to make sure you’re pulling in the largest image size in your shortcode/widget.
Then, you’ll need to add a couple rules to your CSS, first on the .si_item
, and then on the img
within the .si_item
:
.si_item{
width: 100%;
max-width:100%;
}
.si_item img{
width: 100%;
}
One word of warning – depending on how wide your page is, there’s a good chance that making the images full-width will cause them to be pixelated as they aren’t big enough to naturally fill the whole screen. If you’re finding that to be the issue, you could instead make them their maximum width and center them on the page. So if the images are 600px:
.si_feed .si_item {
float: none;
width: 600px;
max-width:100%;
margin: 0 auto;
}
.si_item img{
width: 100%;
max-width: 100%;
}
Hopefully that’ll get you pointed in the right direction.