Jump to content

croatiankid

Members
  • Posts

    332
  • Joined

  • Last visited

Everything posted by croatiankid

  1. With invalid code like you have, the problem isn't firefox, but rather your code.
  2. We need to see some code, we're not psychic you know
  3. Well, for starters, validate your code. We can't be sure of what's causing your problems if you have invalid code.
  4. you can use padding and margin and float to do all that. yes.
  5. problems with using tables for layout: * mixes presentational data in with your content. o This makes the file sizes of your pages unnecessarily large, as users must download this presentational data for each page they visit. o Bandwidth ain't free. * This makes redesigns of existing sites and content extremely labor intensive (and expensive). * It also makes it extremely hard (and expensive) to maintain visual consistency throughout a site. * Table-based pages are also much less accessible to users with disabilities and viewers using cell phones and PDAs to access the Web.taken from hereno problems, eh?
  6. I second that. I'm not making a file and saving it just to help YOU.
  7. read the tutorial. How to use the <link> tag to link to an external style sheet:<head><link rel="stylesheet" type="text/css" href="theme.css" /></head>
  8. In my opinion the "web design business" is dieing, more and more people/institutions/companies are outsourcing projects, it's cheaper and faster
  9. lol... you failed math or am I missing something? how can 8 megabytes (losely speaking) be larger than 83 megabytes??
  10. what's the advantage of w3school certification over others?
  11. the embed tag was made up by netscape, and has never been in any w3c recommendation. you're probably best off with a flash player in a frame or iframe. http://musicplayer.sourceforge.net/
  12. tables are for tabular data, not laying out entire pages
  13. wrap the code in [ code ] and [ /code ]. You don't have a DOCTYPE, <font> is deprecated (you must use css instead)
  14. put 2 periods in the href/src. for example, to get an image one directory up, use src="../image.jpg". you could also enter another directory, for example, src="../directory/image.jpg". To go two directories up, you use src="../../image.jpg", for three src="../../../image.jpg" and so on
  15. The DOCTYPE can't be a tag. XML wouldn't permit it to be left open in an XHTML document, or any XML document for that matter.
  16. there is no reason to validate source files, nor can you validate most of them. why do you want to? all that matters is what is sent to the client, not what happens on the server
  17. IE does, check out this article
  18. when a client views a php page, he doesn't see any php, just the html that is produced from it.
  19. Hi, I suggest you update http://www.w3schools.com/tags/tag_doctype.asp. The reason? The DTD isn't a tag, neither in HTML or XHTML. The W3C always calls it a doctype declaration/DTD, never a tag. I think it should stay in the taglist, but that it should be written on the page "The DTD is not a tag!", and the parts calling it a "tag" be reworded to call it a DTD or doctype declaration/definition, as said here and here.
  20. croatiankid

    Font problem

    W3C recommends (try validating) putting quotes if they contain whitespace, for example Times New Roman should be "Times New Roman". This is because if a font were to contain more than 1 consecutive white space, for example imaginary font , without the quotes it would be rendered as imaginary font . I don't know if there is a font like this, but it's W3C recommended.
  21. <img src="image.jpg" border="0"> If you're using CSS, add img{border:none;}
  22. FireFox 2.0 opens target="_blank"s in tabs I think
  23. croatiankid

    url icon

    yes. on every page that you want it to be displayed. in the head.
×
×
  • Create New...