Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
364 views
in Q2A Core by
Please tell how can I increase the side bar width in default theme .

1 Answer

+1 vote
by

in qa-styles.css

Main area width:


.qa-main {
    padding-left: 10px;
    float: left;
    width: 650px;
    margin: 10px 0 24px;
    clear: left;
    overflow: hidden;
}


 

Sidebar width:

.qa-sidepanel {
    float: right;
    width: 240px;
    padding: 10px;
    min-height: 80px;
}

...