style.css:
#primary, #secondary {
float:right;
overflow:hidden;
width:220px;
}
I found that but as soon as I adjusted the width my sidebar completely disappeared. Is there something I need to change before that works?
You’ll also need to to reduce the main content area by the same amount.
Have a look at this post, read the topic contents and consider using a child theme.
The style changes from 220px to 250px would be added to style.css are:
#container {
margin: 0 -250px 0 0;
}
#content {
margin: 0 310px 0 20px;
}
#primary,
#secondary {
width: 250px;
}
HTH
David
I took a look at the child theme and it left me confused. I’m sure if I took some time I could figure it out. The other advice helped and I made my sidebar larger, but the other thing I was wondering, is how to get my title centered? I’ve tried and again I can’t get it.
I may try the child theme but I’ve done so much work already I’m afraid of losing it all if I goof us on the theme change 🙂