SeanieC
07-26-2006, 10:27 AM
Okay, heres the old, fireworks compiled, messy and finally still full of pointless (x)HTML.
http://www.i-dash.co.uk/sean/
I have started a new one this time building it bit by bit myself and organising the code as I go along. It was suggested to me that I shouldn't use absolute positioning, so I have used relative. I'm still not sure what the differences are between them all but have the general jist. Does this look correct because I had to visually position a <div> to the right of another <div> and this was the way I worked out how to do it.
body {
background-color: #FFFFFF;
margin: 0px;
}
#circlestop {
position: relative;
width: 256px;
left: 150px;
}
#bannerleft {
left: 150px;
position: relative;
width: 256px;
}
#flashbanner {
position: relative;
left: 406px;
top: -123px;
width: 127px;
}
It was bannerleft then to the right of that flashbanner.
Thanks!
http://www.i-dash.co.uk/sean/
I have started a new one this time building it bit by bit myself and organising the code as I go along. It was suggested to me that I shouldn't use absolute positioning, so I have used relative. I'm still not sure what the differences are between them all but have the general jist. Does this look correct because I had to visually position a <div> to the right of another <div> and this was the way I worked out how to do it.
body {
background-color: #FFFFFF;
margin: 0px;
}
#circlestop {
position: relative;
width: 256px;
left: 150px;
}
#bannerleft {
left: 150px;
position: relative;
width: 256px;
}
#flashbanner {
position: relative;
left: 406px;
top: -123px;
width: 127px;
}
It was bannerleft then to the right of that flashbanner.
Thanks!