Could someone please advise me on how to create a text block over an image that remains consistent even when the screen width is less than 720px? Currently, the text block shifts position and looks unattractive at smaller widths. I would like it to stay fixed in place, just like it does at 1024px.
Below is my CSS code:
.text-block { position : absolute; bottom: 0px; left:0px; }
The text block appears correctly at screen widths above 1024px, but becomes distorted below 720px.
I apologize if there are any errors in my writing.