I have a slideshow and on it are the small circles where u can see how many pics there are and which one is active. Those circles are position: absolute; and i'm trying to make them be centered.
How do i do that?
Heres HTML:
<div id="circles">
<img src="slike/active.png" id="circle1">
<img src="slike/circle.png" id="circle2">
<img src="slike/circle.png" id="circle3">
<img src="slike/circle.png" id="circle4">
</div>
And CSS:
#circle1, #circle2, #circle3, #circle4 {
position: absolute;
top: 600px;
}
#circle1 {
left: 630px;
}
#circle2 {
left: 655px;
}
#circle3 {
left: 680px;
}
#circle4 {
left: 705px;
}