Re: POE site not displayed correctly under IE7
Rocco Caputo <[email protected]>
| Newsgroups | gmane.comp.lang.perl.poe |
|---|---|
| Message-ID | <[email protected]> |
Thanks for the pointers. I've updated the templates & header generation code to pass validator.w3.org for the front page. It's a wiki without a test suite, so I can't guarantee every page will validate. In fact, I strongly suspect that many pages will fail. Feel free to patch pages with bad content. There's a login/signup link at the bottom, and it'll enable an edit link when you do. I know some of the cookbook examples are too wide for the content column. I'm going to try to make the content column stretch to accommodate wide content. -- Rocco Caputo - [email protected] On Jun 14, 2009, at 05:45, Olivier Mengué wrote: > > This is because under quirks mode, the auto margin method is not > enough to > make IE align your container to the center > > So the right fix would be to tell IE to run in standards mode > instead of quirks mode. > This can be done by adding a doctype to the HTML > > The W3C validator would be helpful to fix the problems. > http://validator.w3.org/check?uri=http%3A%2F%2Fpoe.perl.org%2F&charset=(detect+automatically)&doctype=HTML+4.01+Strict&group=0&user-agent=W3C_Validator%2F1.654 > > In particular : > - use type="text/javascript" instead of language="javascript" for > script tags > - fix URL encoding : replace "&" with "&" in href attributes > - add <p> around <input> (search box) > > Thanks for POE and the huge documentation work. > > Olivier.