Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
1.0k views
in Q2A Core by

How can i increase the width of the section as in the screenshot?

is there a setting for this ?

 

2 Answers

0 votes
by

Find this code (around line 115)

.qa-nav-main { background:#094502 repeat-x left top; float:left; width:944px; height:55px;}

In your qa-styles.css fiile.

 

by
Where exactly is this at I looked in the styles snow qa-styles.css file and tried using the search tool on the php editor and did not find anything like that?
+2 votes
by

You are looking to make changes for main navigation and main content area both. Snow theme width defined with qa-body-wrapper class also qa-main ( content area ) has defined width. So you may required to change both.

Assuming you want to set main area width to 1200px

in qa-style.css

line #415

.qa-body-wrapper change width: 1000px to width: 1200px ( or whatever you want )

and for content area

line #585

.qa-main change width: 710px to width: 910px ( depend on what you have set for qa-body-wrapper)

...