Jump to content

vchris

Members
  • Posts

    1,529
  • Joined

  • Last visited

Everything posted by vchris

  1. Welcome to W3schools forum :)What do you mean you got stuck publishing your website?
  2. You need to remove the default margins. To do this add a style between your <head> tags. <style type="text/css">body { margin: 0; }</style> This should take care of your margins.
  3. vchris

    Ordered List Item

    hmmm in pure HTML I don't believe it's possible to jump to different numbers like that. You can start where you want though with the "start" attribute. <ol start="17">... Only other thing I could think of is using a <ol> for each list item thus having the numbers you wish.Maybe someone else will come up with some other way but to my knowledge this is the only way, in html anyway.
  4. vchris

    Load images

    Kinda hard to read your text... but I think I understand. You'll need any server side scripting language (ASP, PHP, coldfusion...) anyone of those. You create 1 page and store the img path and text in a DB.
  5. vchris

    Ordered List Item

    What do you want to do?
  6. Cool topic!Site Name: Deep CodingSite Description: PortfolioSite Owner/Developer: meSite address: http://www3.sympatico.ca/vchrisExtra comments: This site was designed about 1 year ago and includes many of my contracts and stuff I've made in my spare time.:)Site will be offline monday
  7. I just remembered there is an extension for FF to add an IE tab, which works in the IE environment not FF. That would probably work.
  8. vchris

    new

    What do you mean by different versions of the blog?Sorry but first time I hear the word clob...
  9. vchris

    Variables Limits

    Hmmm.. I'm not sure about that because imagine all those huge php applications, I'm sure they must have more than 17 variables.Does it matter which variable you take out?
  10. vchris

    Code Problem

    Add the style "margin: 0;" to your body tag in your css. This will remove the default margin in your document. Thus your divs will be equal. I have tested this.You should consider having all the properties of h1 for example in one location. h1 { color: white; background: #000000; }Your CSS will be smaller and cleaner.
  11. As per W3schools standards <object> should be used instead of <embed>
  12. You should still be able to use notepad or any other text editor (Word, Wordpad, ...). There is a topic that mentions free text editors to download. I would recommend getting IE for testing purposes. I have no idea if it works on a MAC. I'm not a MAC guy.
  13. XHTML is a lot like HTML with a couple differences. Every element that doesn't have a closing element should be closed with />. There are also a couple other attributes and tags that should be used. I would recommend reading it, it shouldn't take much time. Then try and make an xhtml page and validate it with w3schools.
  14. Found a couple things:1) In front of your table tag you have a <center> tag and it's not closed at the end. I recommend simply putting align="center" in your table tag.2) Those <% ... %> comments should be <!-- ... -->3) You never specify the width or height in any cell. Your images should all be background images with a height and width for the cell and image.Now it should work.
  15. hmmm... no it doesn't. I copied your code and added a width of 750px and it's not centered.
  16. vchris

    Code Problem

    First of all, div1 is not a tag. I suggest changing the class for that div to something unique for that div. Why do you have a 1 cell table in your div? It doesn't do anything. You can remove it and add the padding in the div instead.
  17. body { text-align: center; } /* centers in IE */#container { margin: 0 auto; } /* centers in everything else */
  18. They might just be saying the same thing about us on their forum
  19. Well how does it work on your page? When users type your url do they go directly on your chat room page?If not well only the link that goes to that chatroom just add "#achorname" without the quotes.
  20. vchris

    Entries

    Here is an example of how to create your list:This is a regular list which I'm sure you've done before. I added the class="nobullets" so it is unique and can be easily modified with CSS.HTML:<ul class="nobullets"><li>smileys</li><li>laffytaffy</li><li>bun b.</li></ul> .nobullets means the <ul>, so I am removing the margins which is on top and bottom of the list and the padding which is on the left. Then .nobullets li means the <li> of the <ul> with class nobullets. list-style-type: none; removes the bullets.CSS: .nobullets { margin: 0; padding: 0; }.nobullets li { list-style-type: none; } That's all!
  21. Only way I would know to do that is with anchors (link to a specific place within your page). Basically in your php page in your iframe your place the following code: <a name="linkname"></a>The link that goes to that page should have #linkname added to the end of the link url.Example: <a href="mypage.htm#linkname">my page</a> So once the link is clicked the user would be redirected to that specific location within your page.
  22. style="text-align: left;" should left align your table.
  23. Can anyone answer this question? I need to know when w3c doesn't write anything for IE or NN in the html reference page does that mean it's not supported or if it's supported since first version?
  24. vchris

    css not validating

    I checked my css on w3c and I have no errors but only warnings. Most of them are because there is no background-color specified. Is that normal to have all those warnings?For instance I have: .red { color: #FF0000; }It gives a warning because no background color to .red
  25. You can change the color of all your links with This goes in an external style sheet without the <style> tags or within your html page. External stylesheet is recommended. <style type="text/css">a:link { color: #000000; text-decoration: none; }a:visited { color: #000000; text-decoration: none; }a:active { color: #000000; text-decoration: none; }a:hover { color: #000000; text-decoration: underline; }</style> a:hover is when your mouse is hovers over the link. text-decoration: underline means the link is underlined and none means no underline.
×
×
  • Create New...