They are off by some pixels and not aligned to the lines of my background.
Here is my setup from top to bottom:
Section (Position: Fixed, 100% width, 100% height)
Div (Position: Relative, 100% width, 100% height)
Inside the Div, I have 2 images (Position: Absolute, sizes and positions set to specific %)
How do I get it to position exactly on the “pixels” I want for the editor, preview, and all screens?
p.s. I also tried converting all the % values into vh and vw so it lays right on top of it but also getting the same issue.
The chosen design is inherently challenging to build in a responsive way. My suggestion to you is to create that Orange element in illustrator, save it as a SVG or PNG and upload a single element inside the parent div.
Then, you only have to control one image, rather than two.
I’m not able to test this for you on the browser. However, in the read-only mode I created a new Div that housed specifically the two images, then changed it to:
Hey @Eugene_Tan, I second Kevin, but I also noticed you’re trying to animate both pieces separately.
You have a ton of style settings in various places—both width and height settings on the image itself, then the image class, then the image div wrappers, then the full image flex wrapper. Additionally, “All Images” has styling beyond the defaults (not recommended, as you then have to correct per-image).
So I started from scratch and used CSS Grid ('cause I love Grid):
Remove the duplicate “Div Block 22”. I renamed to “graphic-layout”. Set to Grid (0px gap, align: center); width and height to 100%. That’s all.
Add the background image (here, named “bg”), set to manual position and cover the entire grid. Set width and height to 100%, object-fit: none (this is important, as it won’t scale the background with the viewport).
Take your left image wrapper (here, “g-L”) and manually position in the grid, justify right. Display: flex, align: top. Margin-right: -1px. Height: 720px (use the editor controls not the image controls—this can be whatever value you’d like, I chose 720 out of habit).
Take your right image wrapper (here, “g-R”) and manually position in the grid, justify left. Display: flex, align: top. Margin-left: -1px. Height: 720px (or whatever you use for the left).
Remove all styling from the left and right images themselves, including on the “All Images”. They should be Max Width: 100%, display: inline-block, no box shadow. Plain ol’ images.
For sure, I completely get that. You may have to follow the steps from @ColinSimmons.
Another consideration would be to animate that in a video, insert that video on top of the background. I guess my point in these instances, is to make the design simpler and/or easier to implement.
Responsive can be a CUSS, and I prefer to avoid it at all costs.
Thank you so much @ColinSimmons for the detailed explanation and even a screen recording!!! I have used grid so much for normal work but never on Webflow. Thank you so so much for your help again. It certainly worked and possibly was the best way I could implement it.
Hey @ColinSimmons, if you don’t mind me bothering you again. I was wondering if there is a way to not set the bg object-fit to “none” because then it will just be a fixed size bg and cannot really cater for bigger screens. I think what I really need was to expand the bg to fit the whole vw and vh and still have the g-L and g-R aligned to it accordingly.