Need to increase post width

Status
Not open for further replies.
8 comments
you have to remove sidebars.
OR I don't know if this will work, I'm not specialist, maybe you can make sidebar's divs with fixed height. So they do not take up the whole height of the theme.
 
so you want a full width wordpress blog yes??
can you not take single.php and duplicate it then rename the duplicated one to fullwidth.php and then add

<?php /* Template Name Posts: Fullwidth */ ?>

before the first line of code.

If that isn't what you want then change this part of your style.css from

#header, #menubar-wrapper, #breadcrumb-wrapper, #content-wrapper, #subcontent-wrapper {
margin: 0 auto;
width: 980px;


}


to what i have below:
#header, #menubar-wrapper, #breadcrumb-wrapper, #content-wrapper, #subcontent-wrapper {
margin: 0 auto;
width: 100%;
}

that will then turn it so you no longer have side parts :)

Let me know if this works for you.

If this is not what you want then do let me know and i can try again if you specify a little clearer to me :)
 
I can see that it's a bit more complex than just replacing a 'width' parameter.

You can try to replace each instance of 980px to 100% in your style.css

Right side appeared a big gap(double empty gap), I think left side empty space moved to right side and right side is there itself. Hence, it is showing double empty space on right side.

---------- Post added at 11:29 AM ---------- Previous post was at 10:47 AM ----------

Just change the #page width to 1100px and .narrowcolumn to 670px, that should give you more space for your posts.


It worked!!!
but the problem is the images are in their original sizes. Is there any option to fit the images in post lenght.
Note: I am talking about fullscreen images, not the the thumbnails.

Thank you.
 
Status
Not open for further replies.
Back
Top