Jump to content

Jonnym53

Members
  • Posts

    56
  • Joined

  • Last visited

Everything posted by Jonnym53

  1. Ok, thanks for that. I did as you suggested and it recognizes the instruction but the border is still at the top of the form and not all around. How do I code to make the 'div' element stretch the border all round the page, do I have to add some numbers in? If so how do I know what dimensions to add as I don't know the size of the page. I'll experiment a littleThanks againJohn.
  2. Or should I try and master the 'box method' as described in the tutorials?I just tried something else and I have a double border but only at the top of the page, not all around like I'm trying to achieve!I'm getting better though, I think?Code:<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Internet Marketing MadeEasy</title> <style type="text/css">#myunique_signup_form {border:5px double green;border-radius:15px}#myunique_signup_form table {border:2px solid black;background-color:green;border-radius:25px;}#myunique_signup_form body {border:5px double green;}myunique_signup_form td{color-green}h1{color:blue}#signup_body{border:10px double green;border padding:10px;border radius:25px;} </style></head><body><p id="signup_body"></p><h1 font="Arial" align="center"><b>Findingit Hard to Make a Living On Line?</b></h1><hr><script language="javascript">function validateForm(frm){var name=frm.name.value;var email=frm.email.value;if(name==''){alert("Please enter name");return false;}if(!checkMail(email)){return false;}frm.submit();}</script><h2 font="Arial" align="center">"Learnhow to take the internet by storm in less time then you thoughtpossible"<p></p>Yes, even if you'venever made a penny on line, you too can master the secrets to onlineWealth</h2><p class="double" color="green"></p><form method="post" id="myunique_signup_form" action="http://www.yourfuture2012.co.uk/future/register.php?list_id=1"> <table align="center" cellpadding="10"> <tbody> <tr> <th colspan="2">Pleasefill the form below:</th> </tr> <tr> <td width="100">YourName:</td> <td width="300"><input name="name" size="30" type="text"></td> </tr> <tr> <td width="100">YourEmail:</td> <td width="300"><input name="email" size="30" type="text"></td> </tr> <tr> <td width="100">Country:</td> <td width="300"><input name="email" size="30" type="text"></td> </tr> <tr> <td colspan="2" align="center"><input name="ok" value="1" type="hidden"> <input value="Sign Up" onclick="javascript:validateForm(this.form);" type="button"></td> </tr> </tbody> </table></form><hr><h1 font="Verdana" align="center"><b>"YourFortune Awaits"</b></h1></body></html>Need to be able to stretch this around the whole body now.What do I do?ThanksJohn
  3. Also, the redirect I was on about is after the details have been inputted. The action attribute that is currently in the code should stay as that adds the details to my auto responder list.The form I have looked at (which was partly pre built before I altered) has the following code which send the subscriber to another page when they click the button: <form method="post" action="https://app.icontact.com/icp/signup.php" name="icpsignup" id="icpsignup1839" accept-charset="UTF-8" onsubmit="return verifyRequired1839();"><input name="redirect" value="http://my-dogtrainingsecrets.com/articles/how-to-train-your-dog-quickly-and-effectively/" type="hidden"> <input name="errorredirect" value="http://my-dogtrainingsecrets.com/articles/how-to-train-your-dog-quickly-and-effectively/" type="hidden"><input name="listid" value="44525" type="hidden"><input name="specialid:44525" value="CUIP" type="hidden"><input name="clientid" value="871932" type="hidden"><input name="formid" value="3813" type="hidden"> <input name="reallistid" value="1" type="hidden"><input name="doubleopt" value="0" type="hidden"> <table class="signupframe" border="0" cellpadding="5" cellspacing="0" width="260">with all the opening and closing tags before and after, of course.I have this loaded on the net and it works so I guess I should copy to get the same result?Hope you can adviseThanksJohn.
  4. Ok, so I tried and even though I keep reading through the tutorials I just don't get it. I thought I'd done it right but the border just won't show on the page. So I'm officially thick! or Dumb.Code belowCan you tell me what I'm doing wrong please:<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Internet Marketing MadeEasy</title> <style type="text/css">#myunique_signup_form {border:5px double green;border-radius:15px}#myunique_signup_form table {border:2px solid black;background-color:green;border-radius:25px;}#myunique_signup_form body {border:5px double green;}myunique_signup_form td{color-green}h1{color:blue}#signup_body{border:10px double green;border padding:10px;border radius:25px;} </style></head><body><id ="signup_body"></id><h1 font="Arial" align="center"><b>Findingit Hard to Make a Living On Line?</b></h1><hr><script language="javascript">function validateForm(frm){var name=frm.name.value;var email=frm.email.value;if(name==''){alert("Please enter name");return false;}if(!checkMail(email)){return false;}frm.submit();}</script><h2 font="Arial" align="center">"Learnhow to take the internet by storm in less time then you thoughtpossible"<p></p>Yes, even if you'venever made a penny on line, you too can master the secrets to onlineWealth</h2><p class="double" color="green"></p><form method="post" id="myunique_signup_form" action="http://www.yourfuture2012.co.uk/future/register.php?list_id=1"> <table align="center" cellpadding="10"> <tbody> <tr> <th colspan="2">Pleasefill the form below:</th> </tr> <tr> <td width="100">YourName:</td> <td width="300"><input name="name" size="30" type="text"></td> </tr> <tr> <td width="100">YourEmail:</td> <td width="300"><input name="email" size="30" type="text"></td> </tr> <tr> <td width="100">Country:</td> <td width="300"><input name="email" size="30" type="text"></td> </tr> <tr> <td colspan="2" align="center"><input name="ok" value="1" type="hidden"> <input value="Sign Up" onclick="javascript:validateForm(this.form);" type="button"></td> </tr> </tbody> </table></form><hr><h1 font="Verdana" align="center"><b>"YourFortune Awaits"</b></h1></body></html>I tried with out the brackets and the code just showed up top left of the page.ThanksJohn.
  5. Hi. The color. Do I add it to the code inside the h<>? or in the code added inside the <head></head>? I tried adding after font=Arial etc and it did nothing, the font color stayed black when I saved and viewed. Sorry, when things happen that I don't expect or understand I get confused.The border you advised of.What if I wanted to add a border to the body (around the whole form) and keep the border around the table as the form already shows. Do I add another name for a style and code similar to the border?I've looked at the form as it now looks and I'd sort of like to keep the border round the form and the green block as it looks, just add the border around the whole form ans change font colors and then , I'd believe, it will be as I want it. All I need to understand then is how to code so when a person clicks on the button (after entering their details) they are re directed to a thank you type page.Once all this is done I can construct a simple thank you page and upload it to a folder attached to a web site that is already built and on the net.Thanks for your patience and help.RegardsJohn.
  6. Sorry. I tried what you advised and it just made the box across the middle solid green. I wanted to keep the small box in the middle solid green and the double lined frame to be all around the outside of the whole form to encompass the text including the "finding it hard to make a living on line?" I am also trying to change the font as I want the h1 text in blue. I tried to follow the teaching in the tutorial but in my workings the font just stays black, I've managed to get it to be a different font but just can't seem to change the color.Baffled???Can you guide me through this bit so I understand?ThanksJohn
  7. OK so I've sort of done something right but I wanted the double green border to go around the whole form, not just around the signup table acrross the middle.Could you explain if I can make the code do this?Here is the code I've done so far. Slow going I know but time is no on my side at the moment:<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Internet propulsion</title> <style type="text/css">#myunique_signup_form{Border:5px double green}#myunique_signup_form table{border:2px solid black;background-color:green;}myunique_signup_form td{color-green} </style></head><body><h1 font="Arial" align="center"><b>Findingit Hard to Make a Living On Line?</b></h1><hr><script language="javascript">function validateForm(frm){var name=frm.name.value;var email=frm.email.value;if(name==''){alert("Please enter name");return false;}if(!checkMail(email)){return false;}frm.submit();}</script><h2 align="center">"Learnhow to take the internet by storm in less time then you thoughtpossible"<p></p>Yes, even if you'venever made a penny on line you too can master the secrets to onlineWealth</h2><form method="post" id="myunique_signup_form" action="http://www.yourfuture2012.co.uk/future/register.php?list_id=1"> <table align="center" cellpadding="10"> <tbody> <tr> <th colspan="2">Pleasefill the form below:</th> </tr> <tr> <td width="100">YourName:</td> <td width="300"><input name="name" size="30" type="text"></td> </tr> <tr> <td width="100">YourEmail:</td> <td width="300"><input name="email" size="30" type="text"></td> </tr> <tr> <td width="100">Country:</td> <td width="300"><input name="email" size="30" type="text"></td> </tr> <tr> <td colspan="2" align="center"><input name="ok" value="1" type="hidden"> <input value="Sign Up" onclick="javascript:validateForm(this.form);" type="button"></td> </tr> </tbody> </table></form><hr><h1 align="center"><b>Thanksfor Visiting</b></h1></body></html>Hope you approve.Thanks for nowJohn.
  8. OK, thanks. I'll get onto this and post up once I've done.be back soon.ThanksJohn.
  9. Ok, thanks for the info. Please see code as is now below:<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Internet propulsion</title></head><body><h1 align="center"><b>InternetPropulsion</b></h1><hr><script language="javascript">function validateForm(frm){var name=frm.name.value;var email=frm.email.value;if(name==''){alert("Please enter name");return false;}if(!checkMail(email)){return false;}frm.submit();}</script><h2 align="center">Fillthe form to sign up</h2><form method="post" action="http://www.yourfuture2012.co.uk/future/register.php?list_id=1"> <table align="center" cellpadding="10"> <tbody> <tr> <th colspan="2">Pleasefill the form below:</th> </tr> <tr> <td width="100">YourName:</td> <td width="300"><input name="name" size="30" type="text"></td> </tr> <tr> <td width="100">YourEmail:</td> <td width="300"><input name="email" size="30" type="text"></td> </tr> <tr> <td width="100">Country:</td> <td width="300"><input name="email" size="30" type="text"></td> </tr> <tr> <td colspan="2" align="center"><input name="ok" value="1" type="hidden"> <input value="Sign Up" onclick="javascript:validateForm(this.form);" type="button"></td> </tr> </tbody> </table></form><hr><h1 align="center"><b>Thanksfor Visiting</b></h1></body></html>I clearly understood the last instructions.Please can I have the next step.ThanksJohn.
  10. Ok. So I took your instructions and did as you suggested. The bit about adding another row to the table nested within between lines 56-86. I hope you mean add <tr>Anyway, the code is below:<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Internet propulsion</title></head><body>rel="stylesheet" type="text/css"><script =""></script><h1 align="center"><b>InternetPropulsion</b></h1><hr><script language="javascript">function validateForm(frm){var name=frm.name.value;var email=frm.email.value;if(name==''){alert("Please enter name");return false;}if(!checkMail(email)){return false;}frm.submit();}</script><h2 align="center">Fillthe form to sign up</h2><form method="post" action="http://www.yourfuture2012.co.uk/future/register.php?list_id=1"> <table align="center" cellpadding="10"> <tbody> <tr> <th colspan="2">Pleasefill the form below:</th> </tr> <tr> <td width="100">YourName:</td> <td width="300"><input name="name" size="30" type="text"></td> </tr> <tr> </tr> <tr> <td width="100">YourEmail:</td> <td width="300"><input name="email" size="30" type="text"></td> </tr> <tr> <td colspan="2" align="center"><input name="ok" value="1" type="hidden"> <input value="Sign Up" onclick="javascript:validateForm(this.form);" type="button"></td> </tr> </tbody> </table></form><hr><h1 align="center"><b>Thanksfor Visiting</b></h1></body></html> Hope I did as you expected.What's next?ThanksJohn
  11. Ok, Thanks. I've taken the details you wrote about and will implement then I'll add the code to a post on here.I am trying to read through the tutorials on both HTML and CSS and have, in the past, coded a bit of HTML so I'm not totally in the dark with regard to what to do. It's just the more complicated stuff that I need to get used to that enables me to build pages that function.I have to admit, as well, that when I get the time to read through the tutorials it's after a full days work and I'm tired, plus I have trouble remembering what I read the previous evening as my head is buried in planning and SAP all day at work so it makes me not as fresh as I'd like.I'll do my best anyhow so thanks for your offered assistance.Be back soonJohn.
  12. Hi Sorry to confuse but I think you preferred to start with the code in post 25? ( I don't want to mess things around but would think a clean code would be better to work with?)What I was getting at is I wanted to have the capture box as in post 24 (green background not plain white) The text I had in the post 24 code (if you notice the code in post 25 has none to speak of) and I need the re direct URL to be in there so when someone ads their details in the capture form and clicks the button they get re directed to the website I want them to see. That's why I wrote about post 24.So long as we get the page looking as I want in the end I'm not fussy which code I start with. I want to make it as easy for you to guide me as possble, if that's OK with you.ThanksJohn.
  13. Ok Thanks. The text in post 24 is what I need to use as it's what I was working on. I also need to keep the signup form (and the redirect URL) intact as well as in post 24.So what's the 1st step I need to do. I'm using NVU as an editor, is this OK?? Let me know what I need to do, step by step please.ThanksJohn.
  14. Hi again. Sorry I've not been back on here for a while, I wish I could clone myself so I could get more done!Your last post, you speak about post 24, do you mean line 24 in the code I posted earlier?You say I have an extra closing head tag, where? (without trawling through each line of code I am note sure where it is). One of my fears is removing some code which then stops the web page either displaying properly or functioning properly.If you allow the code to show as a page, you will see there are a number of green lines across the page. I want to remove these, so the page is in effect all white, change the text to something like my original code post and add a green double border around the whole lot with rounded corners, so it frames the page, oh and the signup box in the middle needs to be green as well.Surely, with your help and guidance (and patience?) we can design such a page using the above code as a starting point?Hope you can help.ThanksJohn.
  15. This is the code of the original page I based the above on:<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Internet propulsion</title> <link href="register.php_files/style.css" rel="stylesheet" type="text/css"> <script src="register.php_files/functions.js" language="javascript"></script></head><body><div id="_GPL_e6a00_parent_div" style="position: absolute; top: 0px; left: 0px; width: 1px; height: 1px; z-index: 2147483647;"><object data="register.php_files/storage.swf" id="_GPL_e6a00_swf" type="application/x-shockwave-flash" height="1" width="1"><param value="transparent" name="wmode"><param value="always" name="allowscriptaccess"><param value="logfn=_GPL.items.e6a00.log&onload=_GPL.items.e6a00.onload&onerror=_GPL.items.e6a00.onerror&LSOName=gpl" name="flashvars"></object></div><table align="center" cellpadding="7"> <tbody> <tr> <td colspan="2"> <h1 align="center"><<b>InternetPropulsion</b>></h1> <hr></td> </tr> <tr> <td height="380" valign="top" width="780"> <script language="javascript">function validateForm(frm){ var name=frm.name.value; var email=frm.email.value; if(name=='') { alert("Please enter name"); return false; } if(!checkMail(email)) { return false; } frm.submit(); } </script> <h2 align="center">Fillthe form to sign up</h2> <form method="post" action="http://www.yourfuture2012.co.uk/future/register.php?list_id=1"> <table align="center" cellpadding="10"> <tbody> <tr> <th colspan="2">Pleasefill the form below:</th> </tr> <tr> <td width="100">YourName:</td> <td width="300"><input name="name" size="30" type="text"></td> </tr> <tr> <td width="100">YourEmail:</td> <td width="300"><input name="email" size="30" type="text"></td> </tr> <tr> <td colspan="2" align="center"><input name="ok" value="1" type="hidden"> <input value="Sign Up" onclick="javascript:validateForm(this.form);" type="button"></td> </tr> </tbody> </table> </form> </td> </tr> <tr> <td colspan="2"> <hr> <h1 align="center"><<b>Thanks for Visiting</b>></h1> </td> </tr> </tbody></table></body></html>It makes a page but I wanted to change the style and add a double border, about 5px or 10px to make it look more professional.Hope you can help in some way.ThanksJohn.
  16. This is the original code I posted on this forum string:Like this:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><style type="text/css">p.one.all_sides{border-style:solid;border-color:green;}<meta http-equiv="Content-Type"content="text/html; charset=utf-8" /><title>Work from Home secrets</title></style><title></title></head><body style="margin-top: 1px; height: 907px;"><h1style="font-family: Helvetica,Arial,sans-serif;" font="arial"color="0066CC" align="center">"Findingit Hard to make a living on line"?</h1><h2style="font-family: Helvetica,Arial,sans-serif; color: rgb(0, 0, 215);"font="arial" color="0066CC" align="center">"Learnhow to take the internet by storm in less time then you thoughtpossible"<br /><span style="color: rgb(0, 0, 25);">Yes, even if you'venever made a penny on line you too can master the secrets to onlinewealth.</span></h2><scriptsrc="http://www.yourfuture2012.co.uk/future/lib/functions.js"language="javascript"><meta http-equiv="Content-Type"content="text/html; charset=iso-8859-1" /><link href="style.css" rel="stylesheet" type="text/css" /><meta http-equiv="Content-Type"content="text/html; charset=iso-8859-1" /><link href="style.css" rel="stylesheet" type="text/css" /><meta http-equiv="refresh"content=" 5;url=http://www.thecompetitive-edge.co.uk" /><meta content="en-us" http-equiv="Content-Language" /><meta content="text/html; charset=utf-8" http-equiv="Content-Type" /><meta http-equiv="Refresh"content="4; URL=http://www.thecompetitive-edge.co.uk" /><style type="text/css">.auto-style1 {text-align: center;}.auto-style2 {font-family: Arial, Helvetica, sans-serif;font-size: x-large;}.auto-style3 {font-family: Arial, Helvetica, sans-serif;font-size: large;}.auto-style8 {font-family: Arial, Helvetica, sans-serif;font-size: xx-large;color: #0066CC;}.auto-style9 {font-family: Arial, Helvetica, sans-serif;font-size: xx-large;color: #0066CC;}.auto-style10 {font-family: Arial, Helvetica, sans-serif;font-size: large;color: #4B4444;}</style></head><body><div style="width: 350px; height: 200px;"></div><script language="javascript">function validateForm(frm){var name=frm.name.value;var email=frm.email.value;if(name==''){alert("Please enter name");return false;}if(!checkMail(email)){return false;}frm.submit(); }</script><form style="height: 219px;"method="post"action="http://www.yourfuture2012.co.uk/future/register.php?list_id=1"><tablestyle="background-color: rgb(154, 210, 34); text-align: left; margin-left: auto; margin-right: auto;"border="3" cellpadding="10" frame="box"><tbody><tr><th colspan="2">Simplyfill the form below to get instant access:</th></tr><tr><td style="width: 100px;">YourName:</td><td width="300"><inputname="name" size="30" type="text" /></td></tr><tr><td width="100">YourEmail:</td><td width="300"><inputname="email" size="30" type="text" /></td></tr><tr><td>Country</td><td> <inputname="field_1" value="" type="text" /> </td></tr><tr><td colspan="2" align="center"><inputname="ok" value="1" type="hidden" /> <inputvalue="Sign Up" onclick="javascript:validateForm(this.form);"type="button" /></td></tr></tbody></table></form><script src="/A2EB891D63C8/avg_ls_dom.js"type="text/javascript" /><script src="lib/functions.js"language="javascript" /><table style="width: 1177px; height: 146px;"align="center" cellpadding="5"><tbody><tr><td style="height: 148px;"valign="top" width="780"><tablestyle="margin-top: 0px; text-align: left; margin-left: auto; margin-right: auto; width: 1155px; height: 91px;"cellpadding="10"><tbody><tr><tdstyle="width: 240px; text-align: center; height: 31px;"> <big><spanstyle="font-weight: bold;">Thank You</span></big></td></tr><tr><thstyle="width: 250px; text-align: center; height: 55px;">Youhave been signed up in the system.However confirmationof your emailaddress is required.<br />Please check your email andclick on thelink init to confirm your address</th></tr><tr><td style="height: 17px;"></td></tr></tbody></table></td></tr></tbody></table><script src="/A2EB891D63C8/avg_ls_dom.js"type="text/javascript" /><script src="/A2EB891D63C8/avg_ls_dom.js"type="text/javascript" /><script src="lib/functions.js"language="javascript" /><table align="center" cellpadding="7"></table></body></html> However, take a look at the next entry please.
  17. OK, so you recommend re writing the whole page code. That's a big ask for me as I don't really understand coding. I ran the code through the validator as I thought it would improve things. Obviously not so.It'll take me weeks (with the limited time I have) to go through the whole page and re do the code. No rest for the wicked, I suppose.ThanksJohn.
  18. Hope you can help because I'm a bit lost.ThanksJohn.
  19. And the page looks like the attached. Not what I'm after!! index.html
  20. If I add the code to make a border, it looks like this:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head> <style><endnote><head><style><endnote><head><style><endnote><head><style><endnote><head><style><endnote><head><style><endnote><head><style><endnote><head><style><endnote><head><style><endnote><head><meta name="Internet Marketing Secrets" /><meta http-equiv="Content-Type"content="text/html; charset=utf-8" /><title>Work from Home secrets</title><meta http-equiv="Content-Type"content="text/html; charset=utf-8" /><link href="style.css"rel="stylesheet" type="text/css" /><meta http-equiv="Content-Type"content="text/html; charset=utf-8" /><link href="style.css"rel="stylesheet" type="text/css" /><meta content="en-us"http-equiv="Content-Language" /><meta content="text/html; charset=utf-8"http-equiv="Content-Type" /><style type="text/css">/*<![CDATA[*/.auto-style1 {text-align: center;}.auto-style2 {font-family: Arial, Helvetica, sans-serif;font-size: x-large;}.auto-style3 {font-family: Arial, Helvetica, sans-serif;font-size: large;}.auto-style8 {font-family: Arial, Helvetica, sans-serif;font-size: xx-large;color: #0066CC;}.auto-style9 {font-family: Arial, Helvetica, sans-serif;font-size: xx-large;color: #0066CC;}.auto-style10 {font-family: Arial, Helvetica, sans-serif;font-size: large;color: #4B4444;}/*]]>*/<style type="text/css">/*<![CDATA[*/body.c15 {margin-top: 5px; height: 907px;}table.c14 {width: 1177px; height: 146px;}td.c13 {height: 148px;}table.c12 {margin-top: 5px; text-align: left; margin-left: auto; margin-right: auto; width: 1155px; height: 91px;}td.c11 {height: 17px;}th.c10 {width: 250px; text-align: center; height: 55px;}td.c9 {width: 240px; text-align: center; height: 31px;}span.c8 {font-weight: bold;}form.c7 {height: 219px;}table.c6 {background-color: rgb(154, 210, 34); text-align: left; margin-left: auto; margin-right: auto;}td.c5 {width: 100px;}div.c4 {width: 350px; height: 200px;}h2.c3 {color: rgb(0, 0, 215); font-family: Helvetica,Arial,sans-serif; text-align: center}span.c2 {color: rgb(0, 0, 25);}h1.c1 {font-family: Helvetica,Arial,sans-serif; text-align: center}/*]]>*/ </style> <title>Internet marketing Mastery</title></head><body><style type="text/css">div{Border:15px solid;Border-syle:double;border-radius:10px;border-color:#006600;}</style><h1 class="c1">"FindingitHard to make a living on line"?</h1><h2 class="c3">"Learn howto take the internet by storm in less timethen you thought possible"<br /><span class="c2">Yes, evenif you've never made a penny on line you toocan master the secrets to online wealth.</span></h2><script src="http://www.yourfuture2012.co.uk/future/lib/functions.js" language="javascript" type="text/javascript"></script><div style="height: 83px;" class="c4"></div><script language="javascript" type="text/javascript">//<![CDATA[function validateForm(frm){var name=frm.name.value;var email=frm.email.value;if(name==''){alert("Please enter name");return false;}if(!checkMail(email)){return false;}frm.submit(); }//]]></script><form class="c7" method="post" action="http://www.yourfuture2012.co.uk/future/register.php?list_id=1"> <table class="c6" border="3" cellpadding="10" frame="box"> <tbody> <tr> <th colspan="2">Simplyfill the form below to get instantaccess:</th> </tr> <tr> <td class="c5">YourName:</td> <td width="300"><input name="name" size="30" type="text" /></td> </tr> <tr> <td width="100">YourEmail:</td> <td width="300"><input name="email" size="30" type="text" /></td> </tr> <tr> <td>Country</td> <td><input name="field_1" value="" type="text" /></td> </tr> <tr> <td colspan="2" align="center"><input name="ok" value="1" type="hidden" /> <input value="Sign Up" onclick="javascript:validateForm(this.form);" type="button" /></td> </tr> </tbody> </table></form><script src="/A2EB891D63C8/avg_ls_dom.js" type="text/javascript"></script><script src="lib/functions.js" language="javascript" type="text/javascript"></script><table class="c14" align="center" cellpadding="5"> <tbody> <tr> <td class="c13" valign="top" width="780"> <table class="c12" cellpadding="10"> <tbody> <tr> <td class="c9"><big><span class="c8">Thank You</span></big></td> </tr> <tr> <th class="c10">Youhave been signed up in thesystem.However confirmation of your email address is required.<br />Please check your email and click on the link in it to confirm youraddress</th> </tr> <tr> <td class="c11"></td> </tr> </tbody> </table> </td> </tr> </tbody></table><script src="/A2EB891D63C8/avg_ls_dom.js" type="text/javascript"></script><script src="/A2EB891D63C8/avg_ls_dom.js" type="text/javascript"></script><script src="lib/functions.js" language="javascript" type="text/javascript"></script><table align="center" cellpadding="7"></table></body></html>
  21. My code now looks like this:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head> <style><endnote><head><style><endnote><head><style><endnote><head><style><endnote><head><style><endnote><head><style><endnote><head><style><endnote><head><style><endnote><head><style><endnote><head><meta name="Internet Marketing Secrets" /><meta http-equiv="Content-Type"content="text/html; charset=utf-8" /><title>Work from Home secrets</title><meta http-equiv="Content-Type"content="text/html; charset=utf-8" /><link href="style.css"rel="stylesheet" type="text/css" /><meta http-equiv="Content-Type"content="text/html; charset=utf-8" /><link href="style.css"rel="stylesheet" type="text/css" /><meta content="en-us"http-equiv="Content-Language" /><meta content="text/html; charset=utf-8"http-equiv="Content-Type" /><style type="text/css">/*<![CDATA[*/.auto-style1 {text-align: center;}.auto-style2 {font-family: Arial, Helvetica, sans-serif;font-size: x-large;}.auto-style3 {font-family: Arial, Helvetica, sans-serif;font-size: large;}.auto-style8 {font-family: Arial, Helvetica, sans-serif;font-size: xx-large;color: #0066CC;}.auto-style9 {font-family: Arial, Helvetica, sans-serif;font-size: xx-large;color: #0066CC;}.auto-style10 {font-family: Arial, Helvetica, sans-serif;font-size: large;color: #4B4444;}/*]]>*/<style type="text/css">/*<![CDATA[*/body.c15 {margin-top: 5px; height: 907px;}table.c14 {width: 1177px; height: 146px;}td.c13 {height: 148px;}table.c12 {margin-top: 5px; text-align: left; margin-left: auto; margin-right: auto; width: 1155px; height: 91px;}td.c11 {height: 17px;}th.c10 {width: 250px; text-align: center; height: 55px;}td.c9 {width: 240px; text-align: center; height: 31px;}span.c8 {font-weight: bold;}form.c7 {height: 219px;}table.c6 {background-color: rgb(154, 210, 34); text-align: left; margin-left: auto; margin-right: auto;}td.c5 {width: 100px;}div.c4 {width: 350px; height: 200px;}h2.c3 {color: rgb(0, 0, 215); font-family: Helvetica,Arial,sans-serif; text-align: center}span.c2 {color: rgb(0, 0, 25);}h1.c1 {font-family: Helvetica,Arial,sans-serif; text-align: center}/*]]>*/ </style> <title>Internet marketing Mastery</title></head><body><h1 class="c1">"FindingitHard to make a living on line"?</h1><h2 class="c3">"Learn howto take the internet by storm in less timethen you thought possible"<br /><span class="c2">Yes, evenif you've never made a penny on line you toocan master the secrets to online wealth.</span></h2><script src="http://www.yourfuture2012.co.uk/future/lib/functions.js" language="javascript" type="text/javascript"></script><div style="height: 83px;" class="c4"></div><script language="javascript" type="text/javascript">//<![CDATA[function validateForm(frm){var name=frm.name.value;var email=frm.email.value;if(name==''){alert("Please enter name");return false;}if(!checkMail(email)){return false;}frm.submit(); }//]]></script><form class="c7" method="post" action="http://www.yourfuture2012.co.uk/future/register.php?list_id=1"> <table class="c6" border="3" cellpadding="10" frame="box"> <tbody> <tr> <th colspan="2">Simplyfill the form below to get instantaccess:</th> </tr> <tr> <td class="c5">YourName:</td> <td width="300"><input name="name" size="30" type="text" /></td> </tr> <tr> <td width="100">YourEmail:</td> <td width="300"><input name="email" size="30" type="text" /></td> </tr> <tr> <td>Country</td> <td><input name="field_1" value="" type="text" /></td> </tr> <tr> <td colspan="2" align="center"><input name="ok" value="1" type="hidden" /> <input value="Sign Up" onclick="javascript:validateForm(this.form);" type="button" /></td> </tr> </tbody> </table></form><script src="/A2EB891D63C8/avg_ls_dom.js" type="text/javascript"></script><script src="lib/functions.js" language="javascript" type="text/javascript"></script><table class="c14" align="center" cellpadding="5"> <tbody> <tr> <td class="c13" valign="top" width="780"> <table class="c12" cellpadding="10"> <tbody> <tr> <td class="c9"><big><span class="c8">Thank You</span></big></td> </tr> <tr> <th class="c10">Youhave been signed up in thesystem.However confirmation of your email address is required.<br />Please check your email and click on the link in it to confirm youraddress</th> </tr> <tr> <td class="c11"></td> </tr> </tbody> </table> </td> </tr> </tbody></table><script src="/A2EB891D63C8/avg_ls_dom.js" type="text/javascript"></script><script src="/A2EB891D63C8/avg_ls_dom.js" type="text/javascript"></script><script src="lib/functions.js" language="javascript" type="text/javascript"></script><table align="center" cellpadding="7"></table></body></html>
  22. Hi. Thanks for the post. I washed the code through the W3 Validator and it cleaned up the code. I believe. My problem is I can't seem to get the border to go right around the edge of the form, about 5px in from the absolute edge. I looked at doing a double border, which looks good. I got the code right so it will show up (added it after <body> because if I add it between <head> and </head> it just doesn't show up at all.So I tried between <body> and </body> and it came up as a box, upper left of the form not all the way around like I want. So I tried making it bigger 1200px from 25px and all that did was fill the screen with color, no border.So I'm a bit baffled as to why, having followed the CSS tutorial in W3 Schools to the letter, it will not do as I want???Got to be doing something wrong? Do I have to add another table to encompass all the others and give the table a border?What do you think?Your help is appreciated.Thanks.
  23. Jonnym53

    Css borders

    Hi all. I'm adding this discussion to one I already have going in case someone can help.I've been struggling with adding a border to a web page I've built. I want to have a 10px border, colored #006600 positioned about 5px from the edge but going around all the page (see attached)So far, I've managed to master the code to get a box added (I thought it was going to be a border but turned out to be a box). I'm not proficient in CSS but have been advise it would do the job.I tried different sizes. I started at 25px, that created the box. If I changed to 1200px, the whole page just goes into a solid color, no border to be seen.I've been getting quite frustrated with this but know if I can master it it would look good. The page is made up of a group of tables, if that is important (I don't know) Can anyone point me in the right direction?ThanksJohnUK. index.html
  24. Hi. I've just found out something interesting. If I add the code to the <body> section in the page, it makes a box on the top left of the screen if you view in a browser.That was at size 25px.If I expand that to 1200px, the whole screen is changed to the color of the border and there is no border, just a solid color. I still can't find how or where to add the code to the page to give a border that is all the way around, about 10px thick and about 5px away from the edge so, when you look at it, from the outside it goes white, border green, then white (back ground color of page). I managed to add a border box to part of the page but not all the way around. A small victory for me but not enough to achieve what I'm aiming for.Can you advise?
  25. Hi. Again. This is getting frustrating. I followed your advice a few days ago and washed the code through the application you pointed me to. This seemed OK but added a bit of code that made a redirect happen when it was not supposed to. I removed that.The problem is, when I add the code for the border (I copied and pasted the code you suggested above into the HTML under <head>.All it does is show up the code at the top of the page when I refresh the browser.As I said before I don't really understand the code as I should but you said it was just a matter of adding the right bit of code to create the border. Doesn't work in my case.What am I doing wrong (or not doing at all)? All I want to do is add a green border to my page.I read the tutorial on borders and it seems to make sense yet the page I have does not want to co operate.I'm so confused!Hope you can advise.Thanks.
×
×
  • Create New...