Hi, I am using the jquery curvy corners plugin I can get this working on a div tag, but as most of the content is empty, and the width/height is 90% of the page the corners are only rounded at the top.
Also when trying to round the corners of a table this doesnt work, is it possible?
<div id="content" class="content">
<table id="nav_links" class="nav_links" cellpadding="7">
<tr>
<td class="nav_background"><a href="index.html">Home</a></td>
</tr>
</table>
</div>
<script>
$(document).ready( function()
{
$('.content').corners();
$('.nav_links').corners();
});
</script>
Css:
.nav_links
{
margin-left: auto ;
margin-right: auto ;
background-color: #C8C8C8;
border-collapse: collapse;
}
#content
{
width: 90%;
height: 780px;
margin-top: 40px;
background-color: #003366;
margin-left: auto ;
margin-right: auto ;
}
Any idea?
Thanks =)