Hi,
I’m using DW Minion. How do I make the secondary (right) sidebar smaller to leave more room for posts?
Maybe make it 2/3 or 3/4 it’s current width.
Thanks,
1 Answers
Hi,
You can add the following code to the style.css file:
@media (min-width: 980px) {
.primary-inner {
margin-right: 210px;
}
#primary {
margin-right: -200px;
}
#secondary {
width: 200px;
}
}
Note: With this size, you will not able to use some the current widget as our demo in your secondary sidebar.
I think with this size, you should remove the secondary sidebar.
Hope this helps !
Please login or Register to submit your answer