Reputation: 403
I am trying to make a custom postition image on the right side of the page. Hiding the part sticking out. I use Elementor for wordpress with the custom postion function.
Page size: Tablet only
Here is a link to the page I am working on: https://taskoftheday.com/how/
I have tried the overflow:hidden css but no success.
max-width: 100%;
overflow-x: hidden;
I want to hide the overflowed part of the images sticking out to the right.
Upvotes: 2
Views: 32785
Reputation: 1
There is now an option to hide the overflow. In the section layout setting you can select "hidden" as an option to "overflow". https://elementor.com/blog/custom-positioning/ see this page for more info.
Upvotes: 0
Reputation: 1875
In your custom css
settings, try this syntax:
body {overflow-x:hidden !important;}
This will apply hiding overflow
regardless of the screen size.
Upvotes: 3