Still the same thing, I cannot get it to display across the wider page and larger photos. The code is exactly as above but does not work.
Can anybody shed any light on this please ?
I would like to sort it once and for all but everytime there is an uodate it seems to alter the size back again.
TIA
Hi, sorry to hear you have the same problem AGAIN.
1- First of all, you need to check if there is a max-width property in the css. I’ve noticed one at line 1063 of your css file. start by commenting it out.
2- Set the width of post images in your css file :
look for the block below :
img.size-full,
img.size-large,
.wp-post-image,
.post-thumbnail img {
height: auto;
max-width: 100%;
}
Then add the line below :
width: 100%;
like this :
img.size-full,
img.size-large,
.wp-post-image,
.post-thumbnail img {
height: auto;
max-width: 100%;
width: 100%;
}
Of course after theme update, this may revert back. So, you need to save the code in custom css file where you can keep it.
This is the preview :
http://postimg.org/image/41w35d6kh/
Good luck!
Rachid.
Hey thanks again Rachid !! I’ll have a go this weekend and hopefully update it for the better !!
Thanks, its now back how I like it. Now just need to know why it ignores how you altered a photo. Some I loaded I altered them by 90 degrees but now it has them in the original way taken !!