Hello, I have an image that I want to place multiple times on a page, arranged more or less in a circle. I have successfully done this with the following code:
#container {
margin: 0 auto;
width: 1000px;
text-align: left;
}
#center { position: absolute; left: 450px; top: 200px; }
#left { position: absolute; left: 280px; top: 215px; }
#right { position: absolute; left: 640px; top: 215px; }
#bottom { position: absolute; left: 465px; top: 375px; }
#top { position: absolute; left: 465px; top: 50px; }
#tleft { position: absolute; left: 330px; top: 90px; }
#tright { position: absolute; left: 595px; top: 90px; }
#bright { position: absolute; left: 595px; top: 335px; }
#bleft { position: absolute; left: 330px; top: 335px; }
As you can see, I have created nine positions for my image, including the center image, and if you were to view this they would be more or less arranged in a circle. There may be no more efficient way to do this, but I would like to find one if there is.
Ultimately, I'm going to want to place more images outside of the image circle created so far, and in order to do this I basically have to guess and check with the pixel numbers. This is tedious, and is never exact as I'm just eyeballing the results to see if they look 'ok'. I do like this method because when I resize the browser the images stay fixed, with relative positioning they all move together and even on top of each other.
My other problem is that I am trying to place text inside the images, ideally the text would be centered within the image. I achieved that like this:
<div id="left">
<a href="link here">
<img src="circ2.jpg" border="0" />
</a>
<span style="position: relative; top: -50px; left: -95px;"><z>text here</z></span>
</div>
This results in a few issues, first is that I can only fit so much text inside of my image, however wide the image is. Oftentimes I need to fit more.
My other issue is that when I resize the browser the text disappears completely, though the images remain fixed. Do I have to use absolute positioning for the text too? That seems like an awful lot of guess and check work..
Any help or ideas would be greatly appreciated. Thanks in advance!