Just a tip to show you how to get rounded images like facebook 50x50 profile pictures
In your css document add the following selector:
Then for every image you wish to have rounded just add the class "round" to the image or image holder like so
This will produce:
Note: this only works with certain browsers but if the browser is not compatible it will just show the normal image!
In your css document add the following selector:
Code:
img .round{
border-radius: 5px;
}
Then for every image you wish to have rounded just add the class "round" to the image or image holder like so
Code:
<img src="#image_location" class="round" />
This will produce:
Note: this only works with certain browsers but if the browser is not compatible it will just show the normal image!