Q2A Market - Support

We are here to provide you support for Q2A Market premium and free products. If you have any issue in installation, option settings or any bug you found. Please create a ticket. We would try to get back to you as soon as possible.

How do I take away the extra space in/around the logo area?

There is surplus space around the site's logo and html code area of my q2a site I would like to take away. Please do kindly advice how I can achieve this. Thanks

Q2A Website
opened on Jun 6 in Orange Candy

1 Answer

 
Best answer

It's again not clear on which area you want to reduce/remove the space. Since I believe you want to remove top and bottom space on the header logo. If that is the case than in

theme-folder/qa-styles.css around line #524 find below code

.qa-header {
    width: 1000px;
    margin: 0 auto;
    padding: 75px 0 90px;
}

Now replace padding to reduce the space. Something like below

.qa-header {
    width: 1000px;
    margin: 0 auto;
    padding: 15px 0 60px;
}
answered Jun 6
selected Jun 30