• 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 gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.

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