Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
742 views
in Q2A Core by
I do not know why anyone has put this up early. But Q2A's sidebar is not wide enough to show Google ads or Amazon ads properly. Generally sidebar ads are 300 px in width but Q2A's sidebar is less than that and thus the ad goes out of sidebar. Please fix this and increase width of sidebar.
Q2A version: 1.7.4

2 Answers

0 votes
by
If sidebar width is increased then QA section will get less space and that is not good. You can use Google adsense auto ads, they fit whatever size is available. for amazon you can go with less than 300px width.

or you can modify theme according to your requirement.
by
Well for Wordpress theme it works just fine. They use much more width and everything looks flawless. Taking in more space for sidebar won't affect QA section much.
Moreover, if I used auto Google ads so those can fit whatever size then, it'll only result in whatever income from those ads. I need to place those perfectly so that I can have a well prepared ads structure on my website.
by
fixed size ads will not work on mobile, they may look good for desktop version. Auto ads works very well, from my experience and earnings are better compared to fixed ads size. Google try their best high RPC ads in auto format.
by
edited by
I am also trying to figure out the same. Did you figure it out Gurjyot?
0 votes
by

If you are using SnowFlat theme then open its CSS file from

public_html/qa-themes/SnowFlat/qa-styles.css

Then find these CSS lines & change it:


Line no.834

@media (min-width: 1044px) {
 .qa-body-wrapper {
 width: 1024px; <--- Change this to 1280px --->
 }
}

Line no.825

@media (min-width: 980px) {
 .qa-main {
 width: 74.5%; <--- Change this to 75.69% --->
 float: left;
 }
 .qam-topbar, .qa-main-wrapper {
 width: 100%;
 }
}

Line no.2851

@media (min-width: 980px) {
 .qa-sidepanel {
 width: 25%; <--- Change this to 23.81% --->
 padding: 0;
 float: right;
 *zoom: 1;
 }
}

Now you can place a 300px wide image or google ads to the sidebar.

...