Content Width for Pilcrow
-
Hi there,
I have some trouble scaling up the content width of my blog to full size. I don’t like the margins of the page as it stands now (too narrow) and would particularly love to enlarge my pictures. I’ve added the pictures as full size (at least the latest ones).
I found one CSS code in response to another question, but it still remains too narrow for my taste. The code I’ve used is:
.two-column #container {
max-width: 1000px;
}.two-column #sidebar, .two-column #secondary-sidebar {
float: right;
width: 25%;
}.two-column #content {
overflow: hidden;
width: 70%;
}Could anyone help me with this issue?
Thanks a lot!
The blog I need help with is: (visible only to logged in users)
-
Hi there, in your case, there is one more rule that needs to be added. Delete what you have and add the following and then adjust the max width in the first rule to your liking.
#wrapper, .two-column #container { max-width: 1000px; } .two-column #sidebar, .two-column #secondary-sidebar { float: right; width: 25%; } .two-column #content { overflow: hidden; width: 70%; } -
-
- The topic ‘Content Width for Pilcrow’ is closed to new replies.