Seeking help! I'm attempting to overlay some text on top of an image, here's the link: http://jsfiddle.net/5AUMA/31/
The challenge is aligning this text to the bottom part of the image.
I've tried using this CSS:
.head_img p {
position: absolute;
left: 0;
width: 100%;
vertical-align:bottom;
}
Unfortunately, it doesn't seem to work...
Any suggestions?
Also, I'd like this layout to be responsive to screen width. If the width is less than that of a 13" laptop, I want to remove the image but keep the text visible.
How can I achieve this?