Hi Friends
I am interested in show 2 banners in my homepage Q&A, but all my work was impossible....
Any little example of this syntaxis please?? And where a nedd include this syntaxis code?
this is my screen capture:
This might work but I didn't test it. First add position: relative; to the .qa-body-wrapper element in the CSS.
Then add the two divs for the banners anywhere inside that element (via advanced theme):
<div class="qa-body-wrapper"> <div class="banner1"></div> <div class="banner2"></div> [the rest of the HTML here] </div>
With this CSS:
.banner1 { width: 120px; height: 600px; position: absolute; left: -120px; top: 100px; } .banner2 { width: 120px; height: 600px; position: absolute; right: -120px; top: 100px; }
Obviously change the width/position values until you get it exactly how you want it.
Welcome to the Q&A site for Question2Answer.
If you have a question about Q2A, please ask here, in English.
To report a bug, please create a new issue on Github or ask a question here with the bug tag.
If you just want to try Q2A, please use the demo site.