Search results

  1. T

    HTML/CSS Layout Help Please?

    Add this to your wrapper's div style: ---> min-width: 900px; <---- It should look like this: #wrapper { background-color: black; margin-top: 10px; margin-bottom: 10px; margin-right: auto; margin-left: auto; border: 5px outset #333; width: 70%; height: 1000px; min-width: 900px; // <----- add...
  2. T

    HTML/CSS Layout Help Please?

    Add this to your wrapper's div style: ---> min-width: 900px; <---- It should look like this: #wrapper { background-color: black; margin-top: 10px; margin-bottom: 10px; margin-right: auto; margin-left: auto; border: 5px outset #333; width: 70%; height: 1000px; min-width: 900px; // <----- add...
  3. T

    HTML Q. This is what i wanna do have these images where when u click them

    *Add this between <head></head>: <script type="text/javascript"> var file_sound = "location of sound file" function playSound() { document.getElementById("sound").src = file_sound; } </script> *Add this right after <body>: <bgsound src="" id="sound"></bgsound> *Add this...
  4. T

    Where to save PHP files?

    Save in the "wamp/www" folder. You can run it in Internet Explorer or any other browser by typing in the file name in the address bar. The "wamp/www" folder is in usually in C:\ drive root directory.
Back
Top