Jump to content

Err

Members
  • Posts

    1,009
  • Joined

  • Last visited

Everything posted by Err

  1. Err

    CSS "Exclusion"

    Whoops, it works fine on firefox, but not IE (as always ) I was also using a transitional dtd.
  2. Found it! Here we go: http://www.w3.org/TR/xhtml1/#h-4.10http://www.w3.org/TR/xhtml1/#C_8Edit: Yup, scott is right, you should mean while use both of them together.
  3. I thought the right way was always id="habitat", it still works the same though.
  4. Err

    CSS "Exclusion"

    Try this CSS instead then: <style type="text/css">body { visibility: collapse;}.doNotHide { visibility: visible;}</style>
  5. Err

    Howdy, y'all

    Howdy ho' ! I'm from Texas also . Well, happy posting
  6. oh, I see. You need to add a div on the middle section, make the div have a height or however tall you want it then add overflow auto to it... something like this: <style type="text/css">div { width: 100%; height: 490px; overflow: auto;}</style> your html for that will most likely have to be within the table cell.I hope that helps
  7. No problem Don't worry, with time you'll figure out those programs. I was like that the first time I got those programs also. I could of used what I know now to good use back then
  8. Err

    Xenon's intro

    Took the words out of my mouth... I started this at age 17, Even though I'm into this only about a year and a half max now, I already got HTML and CSS down. I still need to tackle other scripting languages :/ .
  9. Err

    CSS pains

    COOL! Now, you don't see stuff like that everyday.
  10. To make a gif transparent in Fireworks:Make a new document, and select "[removed]" , make sure you have enough width and height also, and add the image there. Go to "File" then go to "Image Preview" here you can export the image, make sure you select the "GIF" format and that you have the image set to [removed]", Hit "Export" and that should work.p.s. Those above links are linked to images, so don't skip them.
  11. Don't expect w3schools to answer all your questions exactaly, you have to do a little reading and some trial and error. Then, with time all that stuff will start looking like english to you. I speak from experiance. Also, you need LOTS of patenice, since it is almost like learning a different language.
  12. Yikes. Don't mean to be rude, but I think if you use instead of [code] you guys can lessen the length on this page (There's LOTS of scrolling).[/font]
  13. Err

    show me way

    My uncle just got a Logo done for his company, the person that made the Logo was using Adobe Illustrator. It's not free, but that's what professionals use (and looks easy enough to do myself). However, on the plus side, there is a 30-day trial you can use.
  14. I'm as quick as lightning
  15. Normally I wouldn't touch absolute postionings with a 30 foot pole (hmm... that sounds errily familiar).Anyways, I can see several problems.You have <br /> tags right after your </li>, if you want to space out the list, take off those line break tags and use line-height: ul { line-height: 15px;} Try to widen the main div to fit the image to the right side, perhaps that could help.
  16. Err

    Validation Error

    I think you need to change the border="0" to style="border:0px" so it would look something like this: <a href="contact.html"><img id="contact2" src="Images/contact.png"onmouseover='document.getElementById("contact2").src="Images/contact2.png"'onmouseout='document.getElementById("contact2").src="Images/contact.png"' style="border:0px" alt="Contact Lenses" /></a>
  17. Err

    Hide advertise

    Well, what made you pick Geocities to begin with? With tripod you can at least hide the advertisements (Yes, I've done it before). if you want a FREE web server without ANY ads, you can get a subdomain here. It's worth moving all your files if you are having a big problem with Ads. lol, with Firefox I can ad block all those silly frames from [removed]in Geocities.
  18. I don't know much about frames, but have you tried setting padding and margin to that page to 0px? it could get rid of that nasty line. <style type="text/css">html, body { margin: 0px; padding: 0px;}</style>
  19. Err

    Copy & paste

    never happened to me before.
  20. Normally, I wouldn't touch frames with a 20 foot pole. But the only "black line" on the page that I could find was [removed]. I use firefox as my main browser, at first I didn't notice it, but I did see it after I resize my browser. IE displays it white... it could be becuase of my settings. Is that what you are talking about?
  21. Err

    Amazing sites

    This site is the best Flash site I've seen yet
  22. http://www.dynamicdrive.com/dynamicindex1/scrollerlink.htm
  23. Err

    html

    This was a question that plegued me for a long time. The answer: The Doctype or DTD (as most people call it) simply is a set a rules for your browser to follow, it also makes your webpages render in [removed]. This approach is a very good way to start your web building. Webpages load faster to a certain degree also. Vaildate your pages that use a DTD to check if you are using correct coding.Learn more about DTD's here: HTML Doctype Tag
  24. Cool! lol, I guess I learn something new everyday
  25. Whoa, I can see the problem just by looking at your code. You should really read through the W3schools tutoriuals. anyway...Problem #1: You are using 2 DTD's you only need one and both of them are not correct, this is the right one: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> Problem #2: The basic HTML setup is not correct, this is the correct way: <html><head></head><body></body></html> problem #3: if you are going to use an XHTML transtional DTD, make sure you have backslash on nonclosing tags like: <link rel="stylesheet" type="text/css" href="mystyle.css" /> Problem #4: Your <style> and element tags were not closed. You should have it: <style type="text/css"> @media print {}</style> in summary, your code should look something like this: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html><head><meta name="generator" content="HTML Tidy for Linux/x86 (vers 1st November 2002), see www.w3.org" /><meta http-equiv="Page-Enter" content="revealTrans(Duration=3.0, Transition=13)" /><link rel="stylesheet" type="text/css" href="mystyle.css" /><style type="text/css">@media print {}</style></head><body></body></html> edit: If you have any more questions, please feel free to ask. M'kay
×
×
  • Create New...