This might be a very basic question, but when I set my container which contains the block where the logo element lives the logo element doesn’t seem to inherit the properties of the container and spills out.
I’ve recorded a short video to share what I mean,
Any guidance on best practices to fix this would be highly appreciated.
I’ll just quote the answer that was already given to you on Facebook - maybe it will help other users
The reason for this is that the image has height predefined (which is 109px in your video) depending on the size you’ve selected. Thus, it exceeds the parent container of 80px.
So you need to ensure both the logo wrapper container and the image itself fits 100% of the parent height.
First, set the parent element of the logo (in your case, it’s the Block element) to your desired height, which is 80px. Then set the logo element Content > Height = 100% and Style > Layout > Height = 100%.