• Hey Guest, don't forget to VOTE on each RFC topic. Your voting determine Chevereto development! No votes, no development.
  • Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space

virtical ads

well, let me rephrase it - this is applicable to only desktop version..

Play with css and responsive queries. Show the same ad differently on desktop.

something like this should be a start

Code:
<div id="image_image-viewer_top" class="col1">
left
</div>
<div id="image-viewer" class="col2">
image
</div>
<div id="image_image-viewer_foot" class="col3">
right
</div>

Code:
<style>
@media (min-width: 768px) {
.col1{float: left; width:14%; margin-right:1%;background-color:red;}
.col2{ display:inline-block; width:70%;background-color:blue;}
.col3{float: right; width:14%;margin-left:1%;background-color:green;}
}
</style>
 
Back
Top