Hi,
I want the image on each blog post: http://www.raboff.com/from-a-hotel-room-at-lax/
to have the width of 1050px
The text shall remain the same.
What code shall I add?
Thanks
Charlotte
Hey Charlotte,
I remember you wanting the content of your page to be a maximum of 800 pixels in a previous thread so displaying the image at that size will be very difficult. So please remove that code and we’ll have a look at it after that.
Regards,
Rikard
Hi Rikard.
It was not difficult at all!
The code I got is working fine for the images here: http://www.raboff.com
So is there a code for making the images wider in the actual blog post?
Thanks
Charlotte
Hi,
Yes there is, but since we gave you code for limiting the post width to 800 pixels, setting the image width to anything greater than 800 pixels will not yield a good result. Could you remove the CSS for limiting the posts to 800 pixels then we’ll look for an alternative to that piece of code please?
Regards,
Rikard
Hi Rikard,
this is the code I got… I change it to 1050px…
.blog .container {
max-width: 1050px!important;
padding: 0;
}
.blog .big-preview.single-big {
max-width: 1050px;
}
So why couldn´t a similar code for the actual blog post work?
Charlotte
Hey!
Please replace this code
#main .container {
max-width: 800px;
}
with following one
#main .container {
max-width: 1050px;
}
#top .fullsize .template-blog .big-preview {
max-width: 100%;
}
Best regards,
Yigit
Great! Thanks :)