Jump to content

Jonas

Members
  • Posts

    2,402
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Jonas

  1. Ok, seriously, enough of the pretending that there's a contest of more posts. Suddenly someone might start spamming to win...
  2. Yeah, if you're gonna use more than three spaces, use the <pre></pre> tag set. Preformatted text...
  3. Yeah, a little torn between the second from the top and the second from the bottom...
  4. <input type="button" value="1 page back" onclick="java script:history.go(-1)"></input><input type="button" value="2 pages back" onclick="java script:history.go(-2)"></input><input type="button" value="3 pages back" onclick="java script:history.go(-3)"></input>Those will only take you back as if you had clicked the back button in your browser...
  5. You want borders around your links in the menu? There are two ways of doing it:1:<html><head><style type="text/css"><!--#menu td {border: ridge #FFA500 thin;}--></style></head><body><table style="text-align: center;" cellpadding="3" cellspacing="0" width="810"><!-- border"1" frame="vsides" --> <tr align="center"> <td colspan="7" width="100%"><img src="images/jtbbanner.jpg" alt="Just The Beginning" /></td> </tr> <tr id="menu"> <td><a href="index.html">Home</a></td> <td><a href="hobbies.html">Hobbies</a></td> <td><a href="aboutme.html">About ME</a></td> <td><a href="specs.html">My Computers</a></td> <td><a href="guest.html">Guest Book</a></td> <td><a href="forum/">Forum</a></td> <td><a href="http://oliazk.netfirms.com/oldhome.html">Old Home Page</a></td> </tr></table></body></html>2:<html><head><style type="text/css"><!--#menu a {display: block;width: ?px;border: ridge #FFA500 thin;}--></style></head><body><table style="text-align: center;" cellpadding="3" cellspacing="0" width="810"><!-- border"1" frame="vsides" --> <tr align="center"> <td colspan="7" width="100%"><img src="images/jtbbanner.jpg" alt="Just The Beginning" /></td> </tr> <tr id="menu"> <td><a href="index.html">Home</a></td> <td><a href="hobbies.html">Hobbies</a></td> <td><a href="aboutme.html">About ME</a></td> <td><a href="specs.html">My Computers</a></td> <td><a href="guest.html">Guest Book</a></td> <td><a href="forum/">Forum</a></td> <td><a href="http://oliazk.netfirms.com/oldhome.html">Old Home Page</a></td> </tr></table></body></html>I think both those ways should work...
  6. They're strongly outnumbered...
  7. In your stylesheet, try puttingtable {margin: auto;}text-align is a css feature wrongly displayed by IE. It's supposed to be for text only. Elements use margins, plain text can't be adressed in css, so you have various format tags for plain text to use in the root element...
  8. Jonas

    Moderators

    Winter's kicking in in Stavanger as well I suppose? I've had near-accidents myself this last week...Hope your back gets better.
  9. Ah, so that was the problem. It was really just a general tips for writing scripts. I had no idea not doing that could change color output... :)Anyway, glad it worked...
  10. Don't think it should matter for the colors, but when writing your scripts, you should make use of both the ' and the " signs.document.write('<font color="red">Red color</font>')cause otherwise the browser may get confused where to start and stop the " "...
  11. http://www.w3.org/MarkUp/http://www.w3.org/Style/CSS/XHTML 2.0http://www.w3.org/TR/xhtml2/mod-hyperAttri...tributes_targetWarning: Long read ahead... :)Looks like they're putting the target attribute back into xhtml. Finally. Never understood why they took that out of xhtml 1.0 strict and 1.1...
  12. "With Internet Explorer, XML can be embedded into HTML pages in Data Islands."Yeah, no, I don't do IE only hacks, sorry...
  13. Problem solved, finally... We can move onto other things...
  14. I'd be writing xml if it wasn't for the fact that Opera doesn't support XSLT...
  15. http://www.w3schools.com/vbscript/vbscript_intro.aspDefinition of VBscript under "What is VBscript?". So, basically, it's a light version of Microsoft's programming language Visual Basic...
  16. Jonas

    Moderators

    Why not edit topics? Editing topics is also a way for the moderator to edit in a warning to the person who stepped out of line. If the moderator takes his responsability seriously, there shouldn't be a problem. That's also a reason why the admins should take some time and see who the dedicated posters on the forum are... Is it different? How? If anything, it should include more features, so assigning moderators shouldn't be difficult...Oh, and since I didn't really answer earlier:Aye...orPretty please, with sugar on top...
  17. Jonas

    Moderators

    Yeah, I completely agree. I've been thinking about it for a long amount of time, and that topic about hacking yesterday just shows that with increasing membership, comes increasing amount of less than serious members who are up to no good. I've been an admin on an invisionforum before, and I know that there are tons of opportunities for a moderator included in the forumcode. A moderator can: move topicsclose topicsdelete topicsedit topics (profanity)pin topics (announcement threads)split topics if they go off topic from the original question (make one thread into two separate, with separate titles)merge topics that are about generally the same thing (which we've also had a lot of recently) ban people (although I haven't seen a case of necessity yet)
  18. Jonas

    Display values

    Without the bottom-margin...
  19. Jonas

    Display values

    http://www.w3schools.com/css/pr_class_display.asp
  20. What scrollbar css is that?This scrollbar css?I'm afraid that's IE only css. You see, Microsoft feels compelled to make w3's job harder by making their own exclusive html, css and scripts, further confusing people to make code that only works in their browser. That piece of CSS is not a w3 standard...So, to sum it up, I'm afraid you won't get it to work in any version of Firefox...
  21. Please, please, try to write more grammatically correct. Some punctuation, for example, would be welcome, as it makes it easier to read...Now, as it is, I can't help you, sorry. I'm not good with xml applications...
  22. Jonas

    background images

    Stretching images is an option that should become available in CSS3. Until the time when that's a standard, and is implemented with support in most major browsers, I can't think of another way...
×
×
  • Create New...