CSS to make Reddle content column wider
-
Hello! I’m hoping to make the main post column in Reddle wider using custom CSS. It comes fixed at 440px, and I got it to be something more like 488px using this CSS (it wasn’t originally 1300px):
}.fixed.secondary #page {
max-width:1300px;
}But I’d like to get that 488px up to 600 if possible, without changing the width of the widget column. What code do I need to use for this?
The blog I need help with is: (visible only to logged in users)
-
Try removing the width related CSS you have so far, and add this instead:
.secondary #content { margin-right: 37.25%; } #main .widget-area { width: 22.5%; } -
-
Cheers :)
Ah, and I forgot to mention that you should adjust those percentages to find a balance that you like.
- The topic ‘CSS to make Reddle content column wider’ is closed to new replies.