Hi there,
this CSS will force the Content area and the sidebar to remain a fixed size:
@media (min-width: 769px) {
.content-area.grid-75 {
width: 1000px;
}
.sidebar.grid-25 {
width: 300px;
}
}
As Leo and Tom have said you will have issues with responsiveness.
As soon as the browser viewport is below 1300px the sidebar will stack below. And once you go below 1000px – the content text will flow outside of the container and the browser.
Aside of a bad UX – you’re site may also be penalised by Search Engines for being unresponsive and errors such as Content outside of container could be reported.
-
This reply was modified 5 years, 4 months ago by
David.
-
This reply was modified 5 years, 4 months ago by
David.