Jump to content

BoltZ

Members
  • Posts

    564
  • Joined

  • Last visited

    Never

About BoltZ

  • Birthday 10/14/1991

Contact Methods

  • AIM
    HawksReese15
  • Website URL
    http://www.devwebsites.com/

Profile Information

  • Gender
    Male
  • Location
    Maryland

BoltZ's Achievements

Member

Member (2/5)

0

Reputation

  1. Their administration console is a joke to me. You cant find anything on there.
  2. Hello haku. Long time since I have seen you.
  3. Your signature is wrong if($Username=="Xyphon") { $You= Awesome!; } awesome is not a constant or string or pre-defined function. That needs to be in quotation marks. ~Eric
  4. You have a lot of errors in your code that would make it non-complient with IE. First of all a structured document should look like this //doctype here //html tag here /* then do this */ <body> <head> <title> blah </title> //include your style sheets and meta here, etc </head> <body> /* Here is your html code */ </body> </html> You forgot your doctype, your head section, etc. Cheers. First post here in 2 months. Feels good to be back
  5. oK i got it all fixed by the floats but I cant get the stuff on one line. Look at www.devwebsites.com/Tutorializing see what I am talking about. Note that width doesnt matter. Even with only one of the drop downs it still doesnt do one line.. <!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" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Tutorializing - Directory of tutorials for scripting websites and programming.</title> <link rel="icon" type="image/jpeg" href="images/favicon.jpg" /> <style type="text/css"> .logo { margin-left:10px; margin-top:5px; position:absolute; float:left; width:50%; height:100px; } .topnav{ background-color: #0d4e90; width:50%; margin-top:0px; margin-right:0px; height:25px; float:right; color: #FFFFFF; font-weight:bold; font-size:16px; } </style> </head> <body> <div class="logo"> <img src="images/logo.jpg" alt="banner" /> </div> <div class="topnav"> <div style="padding-left:40px; display:inline; float:left;">Tutorials: <script type="text/javascript"> function goto(form) { var index=form.select.selectedIndex if (form.select.options[index].value != "0") { location=form.select.options[index].value;}} </script> <form name="form1" action="#"> <select name="select" onchange="goto(this.form)" size="1"> <option value="" />------Select------ <option value="#" />HTML <option value="#" />CSS <option value="#" />JavaScript <option value="#" />PHP <option value="#" />MySQL <option value="#" />Ajax <option value="#" />SEO</select> </form></div> <div style="padding-left:50px; float:right; display:inline;">Forums: <form name="form2" action="#"> <select name="select" onchange="goto(this.form)" size="1"> <option value="" />------Select------ </select> </form> </div> <div style="padding-left:50px; display:inline; float:left;">Resources: <form name="form3" action="#"> <select name="select" onchange="goto(this.form)" size="1"> <option value="" />------Select------ </select> </form> </div> </div> </body> </html>
  6. I have width: 50% for the containing div. Any other idea? Here is the code <!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" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Tutorializing - Directory of tutorials for scripting websites and programming.</title> <link rel="icon" type="image/jpeg" href="images/favicon.jpg" /> <style type="text/css"> .logo { margin-left:10px; margin-top:5px; position:absolute; float:left; width:50%; height:100px; } .topnav{ background-color: #0d4e90; width:50%; margin-top:0px; margin-right:0px; height:25px; float:right; color: #FFFFFF; font-weight:bold; font-size:16px; } </style> </head> <body> <div class="logo"> <img src="images/logo.jpg" alt="banner" /> </div> <div class="topnav"> <div style="padding-left:40px; display:inline;">Tutorials: <script type="text/javascript"> function goto(form) { var index=form.select.selectedIndex if (form.select.options[index].value != "0") { location=form.select.options[index].value;}} </script> <form name="form1" action="#"> <select name="select" onchange="goto(this.form)" size="1"> <option value="" />------Select------ <option value="#" />HTML <option value="#" />CSS <option value="#" />JavaScript <option value="#" />PHP <option value="#" />MySQL <option value="#" />Ajax <option value="#" />SEO</select> </form></div> <div style="padding-left:50px; display:inline;">Forums: <form name="form2" action="#"> <select name="select" onchange="goto(this.form)" size="1"> <option value="" />------Select------ </select> </form> </div> <div style="padding-left:50px; display:inline;">Resources: <form name="form3" action="#"> <select name="select" onchange="goto(this.form)" size="1"> <option value="" />------Select------ </select> </form> </div> </div> </body> </html>
  7. Hey I am trying to get all this stuff in the div top nav to be on one line in the blue box and I cant for the love of me get it. www.devwebsites.com/Tutorializing
  8. For your fallback option do a noscript tag with inside it <noscript><h1>It seems you have JavaScript disabled. Click <a href="howtoenablejs.html">here</a> to know how to turn on JavaScript in your browser. If you do not wish to enable JavaScript then click here for an alternative login</h1></noscript> Just an idea. It's what I would do.
  9. Is your page updated so I can try to validate again?
  10. You can't force someone to enable JavaScript though. I only use JS/Ajax to sort of sprice up my page.
  11. You can't stretch background images but you can stretch regular images. If you want a backgroundimage that fits the entire page then create a huge one. Or create a smaller one and tile it
  12. Do you honestly even look at the errors? Error 1- valign="middel" Hm I wonder if it should be middle... Error 2- "middel" again Line 55.... Look at the errors next time...
  13. Or I could use Orca Forum SOftware Nt
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.