Hello,
I have been trying to place textbox on top of image and have not been able to do so.
index.php
<div style="margin: 100px 0 0 0; z-index: 3;">
<input type="text" class="form" name="email">
<input type="text" class="form" name="password">
</div>
<div id="banner-background"></div>
<!--<image src="images/banner.jpg">-->
css/styleT.css
#banner-background{
background-image:url("../images/banner.jpg");
}
input[type="text"]{
height: 30px;
width: 300px;
margin: 30px 0 0 365px;
z-index: 2;
}
The background image does not appears.