www.webdeveloper.com

Search:

Type: Posts; User: rtrethewey

Page 1 of 5 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    1
    Views
    168

    Don't set the width on the . Use a ...

    Don't set the width on the <body>. Use a <div> to hold the page content, then you can style the <body> tag as you please. Something like:


    <!DOCTYPE html>
    <html>
    <body>
    <div id="content">
    ....
  2. Replies
    3
    Views
    218

    I'd need to see the entire page. Maybe you have...

    I'd need to see the entire page. Maybe you have a missing or improper <!DOCTYPE>. Maybe you have some invalid code that is outside the portions you posted. It's impossible to say what the problem...
  3. Replies
    4
    Views
    332

    It's certainly do-able, but I can't give you any...

    It's certainly do-able, but I can't give you any specifics without knowing more details about the software that your site uses. And it's really not practical to try to get a complete solution in an...
  4. Padonak is on the right track. I don't really...

    Padonak is on the right track.

    I don't really use jQuery, but what I know of it says your code is incorrect and so is your HTML. First, you need to add an 'id' attribute to either the opening...
  5. Replies
    3
    Views
    218

    Take a look at the 'background-size' property,...

    Take a look at the 'background-size' property, particularly the settings 'cover' and 'contain'.
  6. Replies
    2
    Views
    207

    The CSS rule for the 'img' element at the top of...

    The CSS rule for the 'img' element at the top of your stylesheet does not apply to background images. For that, you need to set the 'background-size' property.
  7. Replies
    4
    Views
    332

    The answer to your question is, of course it's...

    The answer to your question is, of course it's possible. There are several different ways to do this, but the most effective will require server-based software. Generally, sites like yours are...
  8. Replies
    2
    Views
    317

    I tested IE 10 and IE 8 mode and the menu...

    I tested IE 10 and IE 8 mode and the menu "worked". It's not positioned vertically as well as it might, but I don't see a real problem. What do you see?
  9. Replies
    1
    Views
    235

    First, be sure you're including a complete...

    First, be sure you're including a complete <!DOCTYPE> statement at the top of your document. Then you can try adding the following to the start of your stylesheet:


    table, tbody, tr, td {...
  10. I'd suggest two options: (1) you can search the...

    I'd suggest two options: (1) you can search the web for CSS fly-out menus and replace what you have, or (2) take this as an opportunity to actually learn how CSS works.

    The CSS drop-down menu code...
  11. The fundamental behavior of all block-level...

    The fundamental behavior of all block-level elements is the same. If two different block-level elements don't behave the same in your document it's because something in your stylesheet is causing...
  12. You do it by replacing the space characters with...

    You do it by replacing the space characters with '%20', as in:

    alt="Kyoto%20Protocol"
  13. When a URL contains a whitespace character,...

    When a URL contains a whitespace character, you're supposed to encode it with its hexidecimal character code, so a " " should be replaced with "%20". I'm surprised that the validator flagged...
  14. Replies
    6
    Views
    424

    I had a hunch that searching with the keyword...

    I had a hunch that searching with the keyword "dynamic" might be helpful, but all of the references I found relied on JavaScript, so I think that's the only viable approach at the moment.
  15. Replies
    2
    Views
    296

    You're going to have to count the number of left...

    You're going to have to count the number of left and right parenthesis in the user's entry and see if they match. On a good day, you'll also check to see that they're in an acceptable order. That...
  16. Replies
    6
    Views
    424

    Since I know almost nothing about SVG graphics, I...

    Since I know almost nothing about SVG graphics, I thought I'd share my lack of wisdom with you in the great tradition of online forums.... Actually, I have been curious about SVG, and just thought...
  17. This seems to be a question of the design of the...

    This seems to be a question of the design of the structure of the page. The buttons are set to "position:absolute", so you can move them anywhere you like. Since the calendar images have a fixed...
  18. There are a large number of HTML mark-up errors...

    There are a large number of HTML mark-up errors on that page, and any one of them could lead to the problems you're seeing. Run the page through the W3C validator at http://validator.w3.org and...
  19. Thread: Js

    by rtrethewey
    Replies
    6
    Views
    504

    There is no JavaScript involved here. And I...

    There is no JavaScript involved here. And I don't see any reference to your logo image, either. Can you post a link to the page where this code appears?
  20. You can't limit the 'overflow' property to just...

    You can't limit the 'overflow' property to just the horizontal or vertical boundaries. There may be another alternative approach, but we'd need to see the code. Post your code or a link to an...
  21. Replies
    2
    Views
    556

    Replace all instances of: document.holder.src ...

    Replace all instances of:
    document.holder.src

    With:
    document.getElementById('holder').src
  22. All block level elements behave the same in this...

    All block level elements behave the same in this regard. It's misleading to say that any element generates a line break. Rather than try to squeeze a lot of definitions into a message here to try...
  23. Replies
    1
    Views
    353

    I don't think anyone can help you without seeing...

    I don't think anyone can help you without seeing the accompanying HTML code for the pages where this script operates. Restore the original script and then post a link to a page where folks can see...
  24. Replies
    4
    Views
    678

    I'm sorry. I just realized that my example...

    I'm sorry. I just realized that my example wouldn't really do everything you wanted. It mostly gets the structure right, but it doesn't flex. I'll take another run at it when I get a chance.
  25. Replies
    4
    Views
    678

    You mean something like: ...

    You mean something like:


    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="utf-8" />
    <title>Fixed Header and Footer with Side Columns</title>
    <style>
Results 1 to 25 of 120
Page 1 of 5 1 2 3 4
HTML5 Development Center



Recent Articles