• Hi – the page content width seems very narrow meaning images are not displayed very well and text is always wrapped meaning alot of space is not used. I don’t want to use a side bar on the right so want to increase the width of the pages and posts – can somebody please tell me how to do this please ?

Viewing 5 replies - 16 through 20 (of 20 total)
  • Thread Starter simonthesailor

    (@simonthesailor)

    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

    Thread Starter simonthesailor

    (@simonthesailor)

    Anybody ??

    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 :
    https://postimg.org/image/41w35d6kh/

    Good luck!

    Rachid.

    Thread Starter simonthesailor

    (@simonthesailor)

    Hey thanks again Rachid !! I’ll have a go this weekend and hopefully update it for the better !!

    Thread Starter simonthesailor

    (@simonthesailor)

    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 !!

Viewing 5 replies - 16 through 20 (of 20 total)
  • The topic ‘[Theme: 2014]. Increase page content width’ is closed to new replies.