Is it possible to remove one of my widget side bars?
-
I’m just going to use one of these 2 widget areas on my theme, and I would like to get rid of the empty space on the right. Right of the page in in black
Could you help?
The blog I need help with is: (visible only to logged in users)
-
Hi there!
We’d need to adjust the width of the content and remaining sidebar based on the size of the screen your visitor is using. Give this a try:
@media screen and (min-width: 1272px) { .content-area { width: 882px; } .widget-area { width: 294px; } } @media screen and (min-width: 1416px) { .content-area { width: 990px; } .widget-area { width: 330px; } } .site:before { background-color: #333; }It also matches the background color to the sidebar so it blends nicely :)
-
-
-
- The topic ‘Is it possible to remove one of my widget side bars?’ is closed to new replies.