Jump to content

Eric

Members
  • Posts

    284
  • Joined

  • Last visited

Posts posted by Eric

  1. Opera will show a gray scrollbar either way, but FF shows the XP scrollbar.

    Firefox shows whatever scrollbar the current theme uses (not just the XP scrollbar).My theme is called SoftCrystal, look at my scrollbar ---> untitled6bl1.pngOpera for whatever reason, only shows the grey scrollbar no matter what. It should conform to the style of the theme the user has on his/her computer.FF +1 Opera -1 :)
  2. On myspace, they replace any /* comments you make */ with .r{}It's really annoying and I don't know why they do that, but if that's what you're talking about (the comments) there's not much you can do about it.It's really annoying, I had a copyright in mine like /* I hand-coded this CSS, don't take this CSS */Then when I went back and looked, it was changed to .r{} (the whole thing was gone)Myspace is annoying like that

  3. It won't work if you add a DTD.Remove the DTD.The reason is that it's not valid, so the DTD will atemp to revert it.This is true, as I tried it 3 years ago. As soon as I added the DTD the scrollbars reverted in color.Of course, now I know better and don't use them at all :)Main reason being that it's not valid, and another is that is really pisses people off to have their scrollbar change color

  4. Even when you put 0 it still doesn't reconize when you click the MIDDLE button >_>Dom is stupid, it's just a fancy word for JavaScript.There are a lot of stupid terms, like:DOMDHTMLAJAXetc.All of them are just fancy words for other things.

  5. *code removed*I've never gotten a reply on this saying if anyone is using it, and I don't want people stealing my code and not giving thanks.Not even the topic starter could comment on it, with either "thanks for this" or "I still would prefer a JS one"So I'm removing the code.
  6. What is the point of this certification?

    Some exployers will pay you more if you're certified.Also, if you don't have a job and are looking for one (in the web design field), certification *might* make a difference.However, if you go into business for yourself, then a certification means nothing :)Bascally, it only means something if you have a boss that will pay you more if you have one :)
  7. Why do you have 2 <body> elements?You're only supposed to have 1 per document.

    <body><body bgcolor=#404040>
    Here is a basic example of a correct structure:
    <html><head><title></title></head><body></body></html>

    Of course, there are other elements that can go in the head like <link>, <meta>, <style>, etc. but the above is the "basic" strucutre of a HTML document. :)

  8. @ Fire Dragon,To be valid, where you have <script type="javascript"> you should add 'text' in there like this <script type="text/javascript">@ pulpfiction,the 'language' attribute isn't a valid attribute anymore

  9. Well, you could put the whole page inside a scrollable DIV and ask people to use the scrollbar on the DIV instead of the main window scrollbar

    <body>HEADER STUFF HERE<div style="width: 100%; height: 500px; overflow: auto;">WEBPAGE STUFF HERE</div></body>

    The result is two scrollbars (as mentioned above). One for the DIV that you want people to use, and one for the window that you do not want people to use.I'm pretty sure you can disable the main window scrollbar with JavaScript but I wouldn't know what the correct script would be

  10. Definently JavaScript.Were you looking at the ASP tutorial, is that why you were asking about which to use? Because ASP can be written using either VBScript or JavaScript.For "everyday" coding, I'd go with JavaScript. It is better with cross-platform and cross-browser compatability.

  11. With Thunderbird, if it wasn't you default then as soon as you open it a pop-up alert would ask you if you wanted to make it the default.****So you're saying that even if you check the box in options, it gets unchecked?untitled6wz.th.png

×
×
  • Create New...