I hope and you can help me with a question I have since I do not know much about css yet. Well, how can I make a menu on an image with css example I have the following html and css code:
<div class="image-menu">
<img src="images/img-bg.jpg" alt="test">
<ul class="text-menu">
<li>TITULO 1</li>
<li>TITULO 2</li>
<li>TITULO 3</li>
<li>TITULO 4</li>
</ul>
</div>
.image-menu{
position: relative;
width: 100%; /* for IE 6 */
}
.text-menu {
position: absolute;
bottom: 10%;
left: 0;
color: white;
font: bold 40px/40px Helvetica, Sans-Serif;
letter-spacing: 2px;
padding: 0 0 10% 10%;
}
But it does not work out the way I want, I leave a picture of how I think it should be