Log in

View Full Version : image position



93036web
05-19-2007, 04:21 AM
hi all -

i placed an image to my site and i specified the top and left pixel but it's not doing it. i can't figure it out what i'm doing wrong. please help!

my site is http://jrod.awardspace.com/product.html

here's the code

.products a{
top:200px;
left:50px;
}

coothead
05-20-2007, 06:56 AM
Hi there 93036web,

try it like this...


.products a img {
margin-top:200px;
margin-left:50px;
}
coothead

skripter
05-25-2007, 03:22 PM
You need to add the position property also to make it work, like this:

a.products{
position:absolute;
top:200px;
left:50px;
}

mago
06-02-2007, 06:08 PM
You might override other commands you specified in your stylesheet. Can you post the entire sheet you think?

Good luck