|
Posted by Roy A. on 02/23/07 09:19
On 23 Feb, 02:49, Red <idontwantnostinkinspam@.yahoo.co.uk> wrote:
> Hi,
>
> The following page looks right in firefox, but crappy in IE6. The forms
> text area is all over the place.
>
> http://tinyurl.com/2x92fc
>
> Anyone help me out?
>
> PS - Its my first effort at a proper site, so i am not after critiques
> at the moment. Thanks!
This isn't your main problem, so you don't have to focus on it right
now.
The fieldset element requires an legend element as the first child
element.
http://www.w3.org/TR/html401/interact/forms.html#edef-LEGEND
<legend>Order with PayPal</legend>
You can hide this element from visual rendring, e.g.:
@media screen, print, handheld, tty, tv { legend { display: none } }
http://www.w3.org/TR/REC-CSS2/media.html#at-media-rule
Giv meaning to the background images, for non-visual browsers or non-
image rendring, with the title attribute, e.g.:
<div id="header" title = "K ard S - Luxury selection of handmade
cards with orginal designs and bespoke service"></div>
<div id="paypal_info" title="Paypal info:..."
<input .. alt="PayPal Submit"
(In addion to "text/html" try to serve the document as "application/
xhtml+xml".)
[Back to original message]
|