CSS file
code:
img {
position: absolute;
-moz-opacity: 0.1;
z-index: 0;
}
p
{
text-align: center;
color: white;
font-family: arial
z-index: 1;
}
HTML File
code:
<head>
<link rel="stylesheet" type="text/css"
href="style.css" />
</head>
<body bgcolor='#000000'">
<img src='Images/BG.jpg'>
<p>heh</p>
it displays white text ('hehe') on top of the backgroudn image.
but the text isnt selectable. and if i want to put a link in there i cant click it, whats the solution to this problem. thanks in advance.