
July 4th, 2012, 10:34 PM
|
 |
Code Monkey V. 0.9
|
|
Join Date: Mar 2005
Location: A Land Down Under
|
|
The "easist" way that I can think of to do that is to use
Code:
position: absolute;
On DIV's or your A tags to place them where you want them to be. It should be relatively easy.
Code:
#container {
width: 600px;
height: 400px;
background: url('myimage.jpg');
position: relative
}
#link_1 {
position: absolute;
top: 10;
left: 100;
width: 50px;
height: 50px;
}
|