Laura
2012-07-21 22:13:30 UTC
I have uploaded everything on my website LAURANICOLEDESIGNS.COM If you try loading it in safari and firefox you will notice the difference. I have a feeling it has to do with my CSS codeing and the margin tag. I know everything is labeled correctly because all the images do appear in Safari. Here is some of my css code:
ul.logotwo a img {
margin: -500px 0px 450px 740px;
}
ul.logotwo a:hover img {
-webkit-transform: scale(1.35);
-moz-transform: scale(1.35);
-o-transform: scale(1.35);
transform: scale(1.35);
}
ul.logothree a img {
margin: -480px 0px 450px 685px;
}
ul.logothree a:hover img {
-webkit-transform: scale(1.35);
-moz-transform: scale(1.35);
-o-transform: scale(1.35);
transform: scale(1.35);
}
You can view the rest in source code. There must be a better way to position my thumbnails than the margin tag i am using. Please Help!