Dolly
asked 4 years ago

Hi, I am using this plugin to build the Q&A on my site. It looks great, but when you click on someone’s question, the page it takes you to to view their question is full-width and doesn’t look good at all. I want it to be boxed in a container to make it easy to look at. How can I fix it? This is a test page on my site: http://www.northridgefix.com/test/askus. That’s where I have the plugin. Try clicking on the test question, and you will see the page it takes you to. 

1 Answers
DominicStaff
answered 4 years ago

You add the following code to the style.css file or Dashboard > Customize > Css section.

.dwqa-single-question {
    max-width: 1080px;
    margin: 0 auto;
    padding: 90px 0;
}

@media (max-width: 767px) {
.dwqa-single-question {
    padding: 0 15px;
}
}

 

Powered by DW Question & Answer Pro