Portrait Images in Glide pages

Is there any chance to have images for Screen layouts set to 2:3 ?

you can scale() object to any size

1 Like

ook, math column ?

rich text

1 Like

.object {position:relative; top:0%;left: 0%; ; transform: scale(2,3); }

1 Like

Thank you !!

Sorry very bad in css where do I put the code ? In a rich text column, I guess but how do I refer it to a certain image ?

<div class="object">
<img src="IMAGE">

</div>

<pre><span><style>

.object {position:relative; top: 0%;left: 0%; transform: scale(0.2,0.3); 
  margin-top: -10vh;
  margin-bottom: -10vh;
}

Replace IMAGE with the link to your image… paste code into the rich text component

1 Like

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.