> I am a novice with web page building and JQuery and am in need of some > help. I have managed to get the Jquery rounded corners working in my > web page by adding the code for the div and putting the Jquery bits > in my directory. However I have taken the code from the demo page and > I am having issues with the styles, they are interfering with my page > layout. I put the styling into a .css called boxs and put the java > script in the head of my index but its throwing off my featured > image?!? Can anyone help. Its posted temporarily onwww.mojografix.co.uk
You've taken too much of the code from that demo page. You don't need any of the styles or extra demo code. You just need to do the following: <script type="text/javascript"> $(document).ready(function() { $('#myDivToCorner').corner(); }); </script>