www.webdeveloper.com

Search:

Type: Posts; User: Javaboey

Page 1 of 5 1 2 3 4

Search: Search took 0.01 seconds.

  1. Rick said it best, but I'm just chiming in a bit....

    Rick said it best, but I'm just chiming in a bit. If you set your font in html {}, then everything cascading down from there, which is everything in the doc, has that same font applied. Personally,...
  2. When you float something, you take it out of the...

    When you float something, you take it out of the document flow. I don't see why you need to float your wrapper, but if you do, maybe throwing a div with a clear: both in there might help.
  3. Replies
    1
    Views
    288

    Don't use inline-block. It sucks and doesn't work...

    Don't use inline-block. It sucks and doesn't work well. Use block and float left/right.
  4. Replies
    3
    Views
    1,045

    JQuery Cycle is the easiest slideshow to use.

    JQuery Cycle is the easiest slideshow to use.
  5. No sense in doubling/tripling/etc up on your...

    No sense in doubling/tripling/etc up on your code. If <header> has a style that is consistent between all queries, just have header {display: block; position: relative; etc:etc;}. Those are the same...
  6. is HTML5. Legacy browsers won't...

    <!DOCTYPE html> is HTML5. Legacy browsers won't understand this.
  7. Replies
    2
    Views
    283

    border-bottom: 1px solid #000; Apply that to...

    border-bottom: 1px solid #000;
    Apply that to whatever element you need. Also, change the color/size/style as needed.
  8. Dreamweaver isn't much better. It adds redundant...

    Dreamweaver isn't much better. It adds redundant code and makes your code messy. Just use a text editor without WYSIWYG. I actually use Dreamweaver for my text editor. I don't use any of the...
  9. There's just no telling what exactly is wrong by...

    There's just no telling what exactly is wrong by looking at screen shots. I would recommend validating your code: http://validator.w3.org/
    This could get you going in the right direction. If you're...
  10. Replies
    8
    Views
    124

    Well, I feel this is probably a school...

    Well, I feel this is probably a school assignment, so I hate to code it for you. Just think about this: when your document loads, make a var called something like "editsMade". Set that to false....
  11. Replies
    4
    Views
    216

    You can use any text editor - preferably one that...

    You can use any text editor - preferably one that highlights code. That way you see ahead of time if there might be an error. I actually use DreamWeaver, but I don't use any of the menus. I just like...
  12. Replies
    8
    Views
    124

    Just set a boolen variable to False. When they...

    Just set a boolen variable to False. When they click on an input, set it to True. On unload, check to see if the variable is True. If so, run your code. If not, unload the doc.
  13. Replies
    3
    Views
    263

    You can only do is successfully in all browsers...

    You can only do is successfully in all browsers with JavaScript. I use this: http://www.hesido.com/web.php?page=customscrollbar
  14. If I understand correctly, you're not looking for...

    If I understand correctly, you're not looking for external CSS files (which should be external, as the poster above pointed out), but you have multiple pages that have the exact same code in them....
  15. Replies
    1
    Views
    154

    Sure! Just learn HTML, CSS, JavaScript, PHP and...

    Sure! Just learn HTML, CSS, JavaScript, PHP and MySQL, and you're all set!
  16. Replies
    1
    Views
    152

    Put it in your section.

    Put it in your <head> section.
  17. Replies
    4
    Views
    208

    thing == 0 ? "a" : "b" + thing is shorthand...

    thing == 0 ? "a" : "b" + thing

    is shorthand for

    if (thing == 0) {
    return "a";
    } else {
    return "b" + thing;
    }
  18. Thread: Close

    by Javaboey
    Replies
    1
    Views
    127

    Easiest way, off the top of my head, is when they...

    Easiest way, off the top of my head, is when they click on any nav, close everything, then open whatever they click on - by passing the ID probably. Just use the complete:function() to open whatever...
  19. Just looking at your code, it should work fine....

    Just looking at your code, it should work fine. The reason you're getting errors while validating is you have a block element (<div>) inside an inline element (<a>). If you want it to semantically...
  20. Replies
    4
    Views
    218

    The answer I gave was appropriate.

    The answer I gave was appropriate.
  21. Replies
    6
    Views
    262

    You can use :hover on anything. It doesn't have...

    You can use :hover on anything. It doesn't have to be an <a>.
  22. Why define a width if your media query is...

    Why define a width if your media query is responding to widths? Just set your width 100%.
  23. throwing my name in the hat. links below.

    throwing my name in the hat. links below.
  24. Replies
    2
    Views
    261

    Validate your code. Save yourself some headaches:...

    Validate your code. Save yourself some headaches:

    26 44 document type does not allow element "span" here 64
    39 24 ID "fancybox-title-over" already defined 141
    39 44 document type does not allow...
  25. mailto:

    mailto:
Results 1 to 25 of 120
Page 1 of 5 1 2 3 4
HTML5 Development Center



Recent Articles