The site seems to be working just fine :lol:
You'll need to provide a bit more information concerning the problem that you are having with ListMail.
Just by looking at the HTML, it looks like you have a form action within another form action and a bunch of more form actions.
Maybe change ...
<form action="http://www.thedailyguru.com/mail/signup.php" method=post
enctype="application/x-www-form-urlencoded">
<p class=MsoNormal align=center style='text-align:center'><span
style='font-size:10.0pt;display:none;mso-hide:all'><INPUT TYPE="hidden" NAME="list" VALUE="3"></span><span
style='font-size:10.0pt'>First Name: <INPUT TYPE="TEXT" SIZE="10" NAME="fname"><br>
Email: <INPUT TYPE="TEXT" NAME="email"><br>
<INPUT TYPE="submit" ACTION="http://www.thedailyguru.com/mail/signup.php" VALUE="Subscribe Me!" METHOD="post" NAME="sup"
ACTION="http://www.thedailyguru.com/mail/signup.php" METHOD=post
ACTION="http://www.thedailyguru.com/mail/signup.php" METHOD=post
ACTION="http://www.thedailyguru.com/mail/signup.php" METHOD=post
ACTION="http://www.thedailyguru.com/mail/signup.php" METHOD=post
ACTION="http://www.thedailyguru.com/mail/signup.php" METHOD=post
ACTION="http://www.thedailyguru.com/mail/signup.php" METHOD=post
ACTION="http://www.thedailyguru.com/mail/signup.php" METHOD=post
ACTION="http://www.thedailyguru.com/mail/signup.php" METHOD=post
ACTION="http://www.thedailyguru.com/mail/signup.php" METHOD=post
ACTION="http://www.thedailyguru.com/mail/signup.php" METHOD=post
ACTION="http://www.thedailyguru.com/mail/signup.php" METHOD=post><o:p></o:p></span></p>
</form>
To SOMETHING like the following:
<form method=post action=http://www.thedailyguru.com/mail/signup.php>
<input type=hidden name=list value=1>
First Name: <input type=text name=fname size=10><br>
Email: <input type=text name=email><br>
<input type=submit name=sup value="Subscribe Me!">
</form>
NOTICE - You may need to adjust the code depending on your cell/table specs.
To get the general code, there is a nice tool in ListMail that will build it for you. Once you get into the Administration panel, select the Signup button and make your choices and you've got the BASIC code you need to include.
Steve