Hey everybody I want to let you know that I have undertaken the grueling task of getting the heck away from WordPress. I was so sick of the problems and updates I had to do all the time. I am now using my ezbloo system and I am integrating all my old posts into the new system. It sucks, but in the end, I will save bundles of time. I needed to keep things simple and that is why I created ezbloo. I'll have more on this later for you guys after I am done with the total integration of my old posts here. So if you are looking for a post and need it faster, shoot me an email and I will make it a priority. [email protected]

To make  a circle in CSS the first thing that we do is set up the div. We will give our div and id of circle.
<div id="circle"></div>
Next we will enter or CSS commands to make it a circle. We will color our circle yellow! :-). They key factor here is that we are using a border-radius in the CSS commands. It is just like the square where we give it all even sides but then we make the border radius 100% in order to get the circle effect.
<style>
#circle{
width:200px;
height:200px;
border-radius:100%;
background:yellow;
}
</style>