Expanding the width of the blog column in Oulipo
-
The middle main column is too narrow. I have the css upgrade. Is there any possible way to expand the width.
The blog I need help with is: (visible only to logged in users)
-
-
I am not sure where to look in the css text. I have tried messing with the code, and seeing what changes. I am a novice at css and html. I have watched tutorials but I am not sure where to look in the code, or what to change.
-
How much wider did you want to go? The widths and such are in em units (drived me crazy) so there isn’t a direct correlation to pixels. Right now the content area is about 480px wide.
-
hmmm thats confusing. I would like to go double amount the width so around so around 800px or a little more. I want the columns on both sides to push over. Is that possible?
Thanks again for your input :) -
Here are the relevant widths you’ll want to update from the original Oulipo stylesheet:
#wrapper { width: 60em; } #entry-content { width: 30em; } #content { width: 50em; }I think increasing each by 20em would work and still looks nice on my laptop. The ems are relative to type size and so they are more fluid than using pixels for sizing.
So try this in your Appearance → Custom Design → CSS page to see how it looks to ya and adjust from there:
#wrapper { width: 80em; } #entry-content { width: 50em; } #content { width: 70em; } -
Note: to find those widths, I used my browser’s web inspector and clicked around the main blocks of elements until I found the widths and tried adjusting them right from the web inspector. You can also look in the original stylesheet linked on your Appearance → Custom Design → CSS page to find those values.
Web inspectors are awesome. If you haven’t tried them, I’d recommend checking them out. I use Chrome, and it’s built in. There’s an add-on named Firebug for Firefox. And other browsers have web inspectors you can download or enable as well.
-
okay so I figured out how to move the menu on the left over. I just need to bring the middle column over to the left
-
Did you try the CSS I posted above?
If you want to use different CSS, please post the CSS you added so far so we can see what you did to move the left menu over.
-
Sorry for the delay, I have to retire everything because I messed up the css.
I used the css you posted above/ I made it slightly wider. It looks perfect
- The topic ‘Expanding the width of the blog column in Oulipo’ is closed to new replies.