Hey everyone -I got the below HTML code and the thing i want to change are: 1- There are 2 words that i would to bold them: -"First Name" -"Email" 2.I want to delete the next words that showing up on the Sign up form: 1-" * = Required Field" 2- "Email Marketing You Can Trust" you can see here what i mean: http://professional-marketing-guides.com/ The HTML code: -Here's the HTML code: <style> .link, .link a, .signupframe { color: #226699; font-family: Arial, Helvetica, sans-serif; font-size: 13px; } .link, .link a { text-decoration: none; } .signupframe { border: 1px solid #FFFCFC; background: #32E4F1; } .signupframe .required { font-size: 10px; } </style> <form method=post action="https://app.icontact.com/icp/signup.php" name="icpsignup" id="icpsignup182" accept-charset="UTF-8" onsubmit="return verifyRequired182();" > <input type=hidden name=redirect value="http://www.icontact.com/www/signup/thanks.html" /> <input type=hidden name=errorredirect value="http://www.icontact.com/www/signup/error.html" /> <div id="SignUp"> <table width="220" class="signupframe" border="0" cellspacing="0" cellpadding="5"> <tr> <td valign=top align=right> <span class="required">*</span> First Name </td> <td align=left> <input type=text name="fields_fname"> </td> </tr> <tr> <td valign=top align=right> <span class="required">*</span> Email </td> <td align=left> <input type=text name="fields_email"> </td> </tr> <input type=hidden name="listid" value="3522"> <input type=hidden name="specialid:3522" value="ITIU"> <input type=hidden name=clientid value="793066"> <input type=hidden name=formid value="182"> <input type=hidden name=reallistid value="1"> <input type=hidden name=doubleopt value="0"> <tr> <td> </td> <td><span class="required">*</span> = Required Field</td> </tr> <tr> <td> </td> <td><input type="submit" name="Submit" value="Submit"></td> </tr> </table> </div> </form> <script type="text/javascript"> var icpForm182 = document.getElementById('icpsignup182'); if (document.location.protocol === "https:") icpForm182.action = "https://app.icontact.com/icp/signup.php"; function verifyRequired182() { if (icpForm182["fields_fname"].value == "") { icpForm182["fields_fname"].focus(); alert("The First Name field is required."); return false; } if (icpForm182["fields_email"].value == "") { icpForm182["fields_email"].focus(); alert("The Email field is required."); return false; } return true; } </script> <span class="link"><a href="http://www.icontact.com">Email Marketing</a> You Can Trust</span> if you can help me wit that it will be super ....Thanks !
Wrap the word you want bolded in the appropriate tag (<strong></strong>) - should work fine unless the css is overriding it. I've given an example below. <style> .link, .link a, .signupframe { color: #226699; font-family: Arial, Helvetica, sans-serif; font-size: 13px; } .link, .link a { text-decoration: none; } .signupframe { border: 1px solid #FFFCFC; background: #32E4F1; } .signupframe .required { font-size: 10px; } </style> <form method=post action="https://app.icontact.com/icp/signup.php" name="icpsignup" id="icpsignup182" accept-charset="UTF-8" onsubmit="return verifyRequired182();" > <input type=hidden name=redirect value="http://www.icontact.com/www/signup/thanks.html" /> <input type=hidden name=errorredirect value="http://www.icontact.com/www/signup/error.html" /> <div id="SignUp"> <table width="220" class="signupframe" border="0" cellspacing="0" cellpadding="5"> <tr> <td valign=top align=right> <span class="required">*</span> First Name </td> <td align=left> <input type=text name="fields_fname"> </td> </tr> <tr> <td valign=top align=right> <span class="required">*</span> <strong>Email</strong> </td> <td align=left> <input type=text name="fields_email"> </td> </tr> <input type=hidden name="listid" value="3522"> <input type=hidden name="specialid:3522" value="ITIU"> <input type=hidden name=clientid value="793066"> <input type=hidden name=formid value="182"> <input type=hidden name=reallistid value="1"> <input type=hidden name=doubleopt value="0"> <tr> <td> </td> <td><span class="required">*</span> = Required Field</td> </tr> <tr> <td> </td> <td><input type="submit" name="Submit" value="Submit"></td> </tr> </table> </div> </form> <script type="text/javascript"> var icpForm182 = document.getElementById('icpsignup182'); if (document.location.protocol === "https:") icpForm182.action = "https://app.icontact.com/icp/signup.php"; function verifyRequired182() { if (icpForm182["fields_fname"].value == "") { icpForm182["fields_fname"].focus(); alert("The First Name field is required."); return false; } if (icpForm182["fields_email"].value == "") { icpForm182["fields_email"].focus(); alert("The Email field is required."); return false; } return true; } </script> <span class="link"><a href="http://www.icontact.com">Email Marketing</a> You Can Trust</span> HTML:
@rap_rap, W3C will give you all the ammo you need for any of your future coding concerns. It's a great resource and I use it all the time.