Jump to content

Jack McKalling

Members
  • Posts

    1,606
  • Joined

  • Last visited

Everything posted by Jack McKalling

  1. Check to total of votes in the vote topic, and devide it by two (because of the two polls)
  2. Of cource, if <h1> is whats inside those td elements, than its fine to apply these classes to the <h1> elements.
  3. @ aspnetguy: so you're beaten? On top of that, I'll give additional information even you left out :)Html: http://www.w3schools.com/html/html_intro.aspXhtml: http://www.w3schools.com/xhtml/xhtml_intro.aspDeprecated list: http://dhost.info/profmemberone/Pages/deprecated.htm(promotion of my page )Lol
  4. We firstly wait untill the 5th of september, to get the final votes in. If we don't get like 20-25 people in, then th eproject won't start at all (I think). If we do, we'll be voting for what management we will use such as who does what, etc. If all the plans are clear for all of us, then we'll start at the certain date that Choco will declare when the time comes *sounds like a manager, so he feels*
  5. Precisely. :)If you remember to change it as well as in your css as in you html.
  6. It is just that the only ones that have not voted are majorly newbees, who won't come back after only a few posts.
  7. The perfect property you are looking for is this: div.scrollthing { overflow-y:scroll; overflow-x:hidden; } When you used this in your page: Note: you should use linebreaks to have the text between the marges of the div, or else this way would hide the overflowing part.
  8. You can use both these statements if you want items to be either red or bold: .redtext { color:#ff0000; } .boldtext { font-weight:bold; } Or you can use this if you want items to be red as well as bold: .jumpingtext { font-weight:bold; color:#ff0000; } And those "redtext", "boldtext" and "jumpingtext" were only examples. You can choose classnames whatever you like. To apply these classes to the elements you want to get red and/or bold, you would do just only this: Or replace this "jumpingtext" by the classname that you defined in the stylesheet in case you used your own imaginaton
  9. There is no special php linebreak. Everything you echo with php, WILL be echoed. So if you echo like this: echo "something1";echo "something2";echo "something3";echo "something4"; you haven't instructed php to echo a linebreak, so only obvious it won't echo it.You should (could) do it at least like this: echo "\r\nsomething1";echo "\r\nsomething2";echo "\r\nsomething3";echo "\r\nsomething4"; This way every new string will be printed after a new line. Notice: ONE newline. Together "carriage return" (\r) and "newline" (\n) produce one new line. This will cause both plain text editors like notepad and rich text editors like wordpad implement ONE linebreak or newline whatever you call it (a newline, \n, would only produce a newline in notepad, wordpad forces to also use \r, so jus always use both \r and \n)
  10. How do you know? I doubt if Microsoft ONLY developed Internet Explorer just to outrule Netscape's Navigator. It can be one of their reasons, but Microsoft mainly was (probably) to develope just a browser for their own, not to defeat one another.
  11. @ justsomeguy: you always know it better :)
  12. *pinks a tear* beautifully spoken But.. would it help?
  13. You would use window.open() for that, namely in a script attribute (the onclick) or a function defined in the header section. Or
  14. The editing part of my sentence wasn't the point, the fact that only one candidate would put in something, that was the point. Everyone should get the chance to do something himself, only editing or browsing the code of someone else isn't really cooperate, but more slavely and obayingly reading some ones creation But I didn't say that is going to happen.
  15. I use IE for browsing the internet lol (thats what it is for, isn't it? )
  16. For the centering, use this statement for the body selector in your sheet: But this means ALL and EVERYTHING will be centered :)The coloring and classes, well it is just simple. Text can't be styled by its own, only elements. So you have to place the text in an element, that is in this case inline, to enclass that element. <span> is perfect for this, but you can use any element for that. Examples:.redtext { color:#ff0000; } The bolding of the words works the same as colouring it red, only with this statement in CSS:.boldtext { font-weight:bold; } But two classes cannot be supplied together. So if you want one class woth both those statements, you should use this: .jumpingtext { font-weight:bold; color:#ff0000; }
  17. The project won't be that fun if one of the candidates puts in some stuff and the rest was supposed to edit it..I don't say that would be the case though
  18. If this is the result of all interested people, then I think we should drastically downgrade the plans for fewer people.We can call our friends, but we shouldn't have to force people to take part, should we? Although we can just ask all our friends, it comes out we'll be forcing them because they're outnumbered..
  19. Jack McKalling

    php error

    And instead of single quotes, if you want to have double ones in the htnml source code too, you may choose to use escaped double quotes inside double quoted strings like this: [*Edit:]That last error means (may mean) there is something wrong with the external file, or the internal code, that defines your classes. It may be the URL you use if it is an external file, that is incorrect. Could you show the part that defines your classes, or describe it if it is too long?
  20. No, he means a subforum in General, for the vote topics, discussions, announcements, etc. about this "project" :)Which I doubt would be done, but could be nice (just as all those other new forum requests, it could be nice)
  21. There have been many discussions about new forums, subforums and categories, but all were declined. So I don't think even for this project one will be created, besides, he is very busy
  22. A good idea :)But maybe this can get troubled, as many people might like to know exactly what they are signing up for. I though already know I like the idea of any project, so I personally don't matter whatever it will be (unless I am supposed to program 'foreign' languages of cource).
  23. Whaha they're childish, lol "Am not." mwoahahaha
×
×
  • Create New...