Jump to content

vchris

Members
  • Posts

    1,529
  • Joined

  • Last visited

Posts posted by vchris

  1. 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.

  2. 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.

  3. 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?

  4. 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.

  5. 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.

  6. 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.

  7. 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.

  8. 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.

  9. I need a little more assistant on doing this because I'm new to HTML. Thanks!

    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!

  10. 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.

  11. The site for Opera is not bad but it doesn't give any reference for Firefox. Seems like nobody does... I guess it's because it's kinda new.You know when W3schools doesn't write anything for an element like <!DOCTYPE> they don't give any version # for NN and IE, does that mean they were supported when they first came out or if they're not yet supported?

    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?
  12. 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

  13. 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...