sinasohn
asked 7 years ago

Hi, 
Is there a way to set the left column in the DW Mono theme to a fixed width?  I would prefer it not resize as the browser resizes.
Thanks,
Stan

1 Answers
Allen
answered 7 years ago

Hi, the DW mono have the responsive style when the browser window reduce to less than 992px;

So you can try add code to keep that responsive style to which you want by add the code to the theme file : style.css. You can change the width to what you want

@media (min-width: 480px) {
.site-header {
width: 35%;
position: fixed;
top: 0;
bottom: 0;
}
}
Powered by DW Question & Answer Pro