Hello,
Thanks for sending the skin. Your problem is in the .ascx file.
You have added form tags to your skin. You can not do this in a DNN skin as DNN already has form tags around the actual skin, so you can't have a form within a form. - Have a look at the source code of a DNN site and you will be able to see the form tags.
Someone else had a similar problem where they wanted to collect data and store it in an SQL database and was offered this solution:
http://www.dotnetnuke.com/Community...fault.aspxSo, first of all I would remove the form and see if that fixes the problem.
If you still have problems I would remove the Javascript menus just to see if they are causing any problems.
Also, on your bottom table, you have set an id of bottomtext - you can only specify an id once in a skin. If you wish to have multiple calls use a class, so just put class="bottomtext" and then in your skin css have:
.bottomtext
This should get you started, you can pick up errors using visual web developer express (free) and select view error list.