How can I widen the right side bar and move it in from the right side a bit? http://www.bernsteinmedical.com//blog/
Thanks!
Spacing on right side bar?
-
carl_galloway
- Regular
- Posts: 1331
- Joined: Sun Dec 04, 2005 5:43 pm
- Location: Andalucia, Spain
- Contact:
That looks like one of the mt3 templates with your colors instead of the default colors. If this is the case you will need to adjust the width of both #content and #serendipityRightSideBar in your stylesheet. The downside is that youre content will be narrower afterwards. Try making your content width 460px and the rightsidebar width about 170px then add some extra spacing to your right sidebar, using margin-right:5px;
Your code might end up looking like this;
I hope that helps you,
Carl
Your code might end up looking like this;
Code: Select all
#content {
width: 460px;
color: #ffffff;
}
#serendipityRightSideBar {
width: 170px;
margin-right:5px;
padding: 10px;
background-color: #222;
vertical-align: top;
}
Carl
Hi
I think (if I understand correctly) that you need to replace the #mainpane section in your style.css file and replace it with
then (on my mac) everything looks fine
HTH
Dave
I think (if I understand correctly) that you need to replace the #mainpane section in your style.css file and replace it with
Code: Select all
#mainpane {
line-height: 140%;
text-align: left;
padding: 0px;
width: 701px;
background-color: #FFFFFF;
border: 1px solid #FFFFFF;
margin: auto;
}HTH
Dave
Actually, the sidebar is contained in a <td> (thanks, SlayerOffice MODI!). That's screwing up all the CSS.
Padding still works, though (thannks, FireFox EditCSS extension!). Try changing the padding of your #serendipityRightSideBar to something like 20px 100px 10px 10px instead.
<edit after seeing d_cee's stuff:> Oh, you need it white. d_cee's bit works fine for FireFox.
Padding still works, though (thannks, FireFox EditCSS extension!). Try changing the padding of your #serendipityRightSideBar to something like 20px 100px 10px 10px instead.
<edit after seeing d_cee's stuff:> Oh, you need it white. d_cee's bit works fine for FireFox.
-
carl_galloway
- Regular
- Posts: 1331
- Joined: Sun Dec 04, 2005 5:43 pm
- Location: Andalucia, Spain
- Contact: