Jump to content

BoltZ

Members
  • Posts

    564
  • Joined

  • Last visited

    Never

Everything posted by BoltZ

  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
  14. You don't want to rely on JavaScript/Ajax for the main functionality of your site
  15. Theres a mysql and a php forum here
  16. That was honestly the worst comparison I have ever heard of. Who wants herpes to begin with and who in heck would want to pay for it.
  17. Heh all that work and it took me a week to remember you can't stretch a background image.
  18. You cant stretch an image with css. Try making the picture smaller or align the image to the center then apply a black background. This code does everything but align it to the center <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title></title> <base href="http://abysmalwow.servebbs.org/wow/" /> <style type="text/css"> body{ background: #000000 url('images/default.jpg') no-repeat; width:100%; height:100%; } </style> </head> <body> </body> </html>
  19. Try cuttin down your images. That seems like alot.
  20. BORDERCOLOR="005200" wont work it wont validate either if using xhtml put it lower case and use # in the beginning of the color
  21. Wow dude seriously... You have this background-image:url(images/default.jpg); which would make it so it doesn't stretch as the entire page.... Use this code please, it works note that it doesnt center the image and it doesnt look too great with nothing on the right side, but it stretches as the entire background image <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title></title> <style type="text/css"> body{ background-image:url(images/default.jpg); background-repeat:no-repeat; width:99%; height:99%; } </style> </head> <body> </body> </html>
  22. Oh Sorry I didn't even notice you gave a link in your first post.
  23. Can you post a link or your code...
×
×
  • 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.