Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+6 votes
537 views
in Themes by
Is there a way to increase the width of the pages using the snowflat theme?  When viewing on a larger screen it seems like there is a lot of unused screen space.  How can I increase this and is there any issues with doing this?
by
why dont you post a print screen so we can understand you better

1 Answer

+2 votes
by
selected by
 
Best answer

You can use something like this

.qa-body-wrapper {

    width: 90%;

}

or, if you want to set the width depending on screen size you can use CCS @media queries
Hope this helped

by
edited by
A quick way to do this without modifying the theme is this:
https://github.com/fardina/q2a-child-theme
See: https://github.com/fardina/q2a-child-theme/issues/1
by
you can add the above code within <style type="text/css">


</style>

In the head section accessible from Admin/Layout.
...