dustyhawk
asked 10 years ago

Image Hosted by UploadHouse.com via 1024 Image Hosted by UploadHouse.com via 1280
 
why is there a difference in how the sidebar widget is being displayed and how do i fix it so it looks like the 1024 ?

2 Answers
Wilfred
answered 10 years ago

Hi Dustyhawk,
To resolve this issue please go to Dashboard / Appearance / Customize /Custom Code, and add this code below to Header Code section:

 <style>
@media only screen and (max-width: 1280px) {
#content {
max-width: 100%;
}
#sidebar-secondary {
width: 100%;
}
#sidebar-secondary .item {
width: 33.33%;
}
}
</style>

Hope this helps!

dustyhawk
replied 10 years ago

hey Wilfred.

thanks. it does work.

anyway is there a code which I can use where it detects the screen res automatically ?

Wilfred
answered 10 years ago

Can you explain a bit clearer about your question?

dustyhawk
replied 10 years ago

basically, when any screen resolution views my site, the columns will adjust accordingly so that there won’t be any empty space.

Powered by DW Question & Answer Pro