Jump to content

jlhaslip

Members
  • Posts

    2,568
  • Joined

  • Last visited

Posts posted by jlhaslip

  1. div.linksleft{float: left;margin-left: -225px; // delete this. It is pushing the left sidebar too far leftmargin-top: 50px;line-height: 10px;width: 150px;height: 200px;position: absolute // delete this. Can't float and position absolute, tooz-index: 1;}

  2. You might want to google on three column layouts using fixed sidebar sizes and a fixed or floating centre column. CSSPLAY.co.uk has a couple designs. There would be several ways to do this. Try to float the left and right columns in their own direction and centre the middle column. Have a look at that approach and let us know how it goes.

  3. Might want to look at using php to process the form information and then save the info onto a Database or a flat file. Keeping the input on the server would make it more interactive and accessable. Clients are less likely to forget to mail it back, and the results from mailing a form can be a bit ugly.

  4. check your images. when I look at the page and "save image as", I get an image that looks exactly like the 'pink blob' you describe. Might be something wrong with the image or the location you have them stored at..

  5. Validation only means you have written the page to the standards required according to the DocType on the page. It has nothing to do with guaranteeing that any or all Browsers will display it exactly as you think it should be displayed. All Browsers are a bit different in their rendering of code. By validating to the Doctype, there will be fewer rendering issues between Browsers is how I look at it.

  6. Google is your friend.I don't think this forum is for sharing code, but if you have a problem with the code you are using, come and ask a question. This is a Learning site.

  7. Check out the Books by Larry Ullman, Peachpit Press, I think. In particular, PHP and MYSQL for Dynamic Websites, but they are all good.

  8. something like this :

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

    Insert this as the very first line of your page. There are other options. This is for an HTML 4.01 STRICT page. Might want to use HTML 4 transitional. Have a look at the w3schools Tutorials for more info.And read this : http://tagsoup.com/cookbook/css/fixed/ to uderstand what you need to do to have IE render position:fxed.

×
×
  • Create New...