Dear All I have built my website using online builder from Microsoft i.e Microsoft office Live Small Business. I want to have rounded corner shapes on my websites but I am just a beginner in web designing. Can anybody advise me how I can have round corner shapes deployed on my website in some very easy manner. Regards Azhar
if you would like to round the table/div corners search in google for: "dreamweaver rounded corners" or "css rounded corners"and follow any of the tutorials. If want to round corners of an image in photoshop, there are many ways to do that so again search google.
If you are using a style sheet then add this code in the id or class you are calling border-radius:10px;
Obviously DPers never search the forum, this has been answered not less than 1000 times may be. if you just scroll down to couple of threads down you'll find just 2 days back a thread has been created on rounded corners http://forums.digitalpoint.com/showthread.php?t=2106162
Here's an example you can learn from and test yourself ... <style type="text/css"> .rounded { border:1px solid #ccc; border-radius:12px; -moz-border-radius:12px; -webkit-border-radius:12px; padding:10px; } </style> <div class="rounded">This element will have a 1 pixel gray border with 10 pixels of padding applied between the text and the inside border</div>
So, not only did you provide an incorrect answer that will not work in IE, you've provided it in 2 separate threads. Why do you insist on providing incorrect information?