Hello!
Could you give me a few more details on what you’re trying to achieve? How large are you trying to get your images? Is this in the sidebar widget or in your main content area?
Thanks!
mr_speer
I’m going to mark this as resolved due to lack of activity.
I sent a message a long time ago, but it must not have gone through! Bummer!
Right now, my images are less than a square-inch. I would like them to be at least 1.5 inches. I tried changing the number of images from 3 to 1, but the pic is still the same size.
Unfortunately, currently, my Instagram account is getting fixed up, so you can’t even see the pics on the sidebar.
I’m at thefitswitch.org
Oh my apologies, I never received that message. We’ll just chalk it up to a glitch in the support forum.
Changing the image size is definitely possible. The first thing you’ll want to do is change the size of the .si_item wrapper itself. You’ll do this by editing your theme’s CSS file in Appearance->Editor. By default it’s set to 33%, so it’ll be a third of your sidebar’s width, causing there to be 3 items in a single row. I’d suggest starting by making this wrapper 50%, like so:
.si_feed_widget .si_item {
width: 50%;
}
This will cause the widget to display 2 images per row. The next step would be to change the number of images being pulled in to a multiple of 2 in order to make the rows even. Something like 6 should do.
That should result in a series of rows with two larger images each in them. Let me know if this doesn’t seem to be working and we can try some more ideas!
Thanks,
mr_speer