www.webdeveloper.com

Search:

Type: Posts; User: COBOLdinosaur

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. It is intentionally protected. Auto posting is a...

    It is intentionally protected. Auto posting is a method used by spammers, so forum software uses prevention methods. Even if you manage to get it to work, the second it is detected, it is likely to...
  2. You have a problem with the validation of your...

    You have a problem with the validation of your HTML 38 errors in the validator, though I think for the most part it is caused by the unclosed <a name tag at the beginning of the body. As for...
  3. It is a dynamically generated id with a 7-digit...

    It is a dynamically generated id with a 7-digit number unique to the comment.

    in the form: <div id="post_message_1258195"...

    Cd&
  4. absolute or fixed.

    absolute or fixed.
  5. The example is irrelevant. What you are asking...

    The example is irrelevant. What you are asking for is not logical. An element cannot be in two mutually exclusive states at the same time. It either displays or it does not. If it displays then it...
  6. Of course not it would be totally illogical. You...

    Of course not it would be totally illogical. You either display or you don't if it is a background, the set it as the background; otherwise you are just wasting your time trying to re-invent CSS.
  7. Replies
    3
    Views
    773

    Minor rendering differences between browser is...

    Minor rendering differences between browser is normal. They come from different manufacturers who optimize to their own design. The page looks fine in all browsers, so minor rendering differences...
  8. Replies
    3
    Views
    589

    It looks like the theme has pretty much screwed...

    It looks like the theme has pretty much screwed up the css. The element looks like it is inheriting a color of #686868 (but it could be anything the way the thing is put together). The cascade has...
  9. Replies
    4
    Views
    963

    You do not use extra cells to do spacing, you use...

    You do not use extra cells to do spacing, you use the tag definitions and styling to get the presentation you need.

    Perhaps the table article will help
  10. Replies
    3
    Views
    575

    Use the type on the HTML input:

    Use the type on the HTML input:

    <input type="password" />
  11. It is not going to look the same no matter what...

    It is not going to look the same no matter what you do. A Ford does not look like a Chevy because they come from different manufacturers; each with their own design and style. Browsers are no...
  12. Thread: Doctypes

    by COBOLdinosaur
    Replies
    1
    Views
    647

    Or you stay current an use HTML5 and avoid the...

    Or you stay current an use HTML5 and avoid the failed attempt to fuse HTML and XML.
  13. All Dreamweaver and other such trash generators...

    All Dreamweaver and other such trash generators will do is help you avoid learning to actually do something creative. However it will help you learn how to ask for help on forums because it will...
  14. No! If you need a given background image or...

    No! If you need a given background image or color; then set it as a background. Playing the stacking order is just going to make maintenance a stroke causing experience. You are not going to...
  15. Why would you set a negative z-index? That tells...

    Why would you set a negative z-index? That tells the browser to put the parent on top of the div. You should not even need a z-index.
  16. Replies
    1
    Views
    688

    I would do it server side. Put the list of...

    I would do it server side. Put the list of images in an array, and then just generate a container for the image and set the source of the image to one of the array elements using a random as the...
  17. Thread: Css

    by COBOLdinosaur
    Replies
    1
    Views
    463

    If you have your CSS in a file then you can bring...

    If you have your CSS in a file then you can bring it into the head of the page this way:
    <link rel="stylesheet" type="text/css" href="pathTo/yourfile.css" />
  18. Thread: Help

    by COBOLdinosaur
    Replies
    6
    Views
    728

    It does not matter who is responsible for the...

    It does not matter who is responsible for the site. The fact is the code is full of errors, and you cannot expect much from a page with that many defects. The marquee tag is non-standard. IE is...
  19. Replies
    5
    Views
    769

    Yeah no script will work as long as you can live...

    Yeah no script will work as long as you can live with it just staying default. The Google spider will pick it up whether you display it or not. It does not process css or javascript; It just reads...
  20. Thread: Help

    by COBOLdinosaur
    Replies
    6
    Views
    728

    I don't do thing by email. Just post the link;...

    I don't do thing by email. Just post the link; and define "out of wack". It is most likely that by using an old (and defective version of IE, you have messed it up for every other browser.
  21. Replies
    3
    Views
    663

    Yes block elements include a new line.

    Yes block elements include a new line.
  22. Replies
    5
    Views
    769

    Generally a toggle is going to take scripting. ...

    Generally a toggle is going to take scripting.

    You could simplify it and speed it up by using CSS classes:
    .show {display:block;}
    .hide {display:none;}

    then the script can be:
    function...
  23. Replies
    3
    Views
    663

    If #text is not floated, then the line feeds for...

    If #text is not floated, then the line feeds for the h2 and div reset the the starting position available to the bottom of the text line. Whe you do a layout like that all the element going across...
  24. You probably have to break up the list and use a...

    You probably have to break up the list and use a couple of floated divs to hold the pieces probably with a figure tag as the container. It makes the CSS problematic. More work then I would ever be...
  25. I doubt it makes sense to have 40 items for a...

    I doubt it makes sense to have 40 items for a single element in a drop down. Either it needs to be broken down; or be a static sidebar menu or there should just be a link at the top level that goes...
Results 1 to 25 of 49
Page 1 of 2 1 2
HTML5 Development Center



Recent Articles