I'm trying to build the following layout:
a background color for the left half of the screen, an image for the right half of the screen and overlapping text:
I'm using Drupal with a bootstrap based theme.
I've tried building this by setting the image as a background image with size 50% 100% and position:right but that doesn't maintain the image proportions.
I've also tried putting the text in a col-6 and the image in a col-6, which works when I apply display:-moz-box, position:relative and z-index:999 to the text, but it feels hacky and I don't know if that's the right approach.
Is it possible to build a layout like this with text overlapping the background-color and the background-image by using bootstrap nesting for example?
Thanks!