Forum Moderators: not2easy

Message Too Old, No Replies

Form looks distorted in IE, but nothing else.

         

kinkarso

10:28 pm on Jul 2, 2010 (gmt 0)

10+ Year Member



Hi there,

It's a problem that I'm trying to figure out for quite some time now. I've changed the CSS structure for the form entirely, but even though its better, the form is still distorted in IE7.

[rayku.com...] (the 'quick register' form):

This is what it is supposed to look like:
[screensnapr.com...]

This is what it looks like in IE7:
[screensnapr.com...]

I am not a coder, but am just trying to give it a go myself. Any help is much appreciated.

Thanks!
Donny

Super_Chunk

4:31 pm on Jul 13, 2010 (gmt 0)

10+ Year Member



This is usual with versions of IE, especially below version 8. Try using a css reset (do a web search for info) before your stylesheet and if that doesn't work then write a IE6/7 specific stylesheet to 'fix' the problems and include that after your stylesheet. You can target specific browsers like so (in your <head> tag) :

<link type="text/css" rel="stylesheet" href="styles.css" media="screen" />
<!--[if lt IE 8]>
<link type="text/css" rel="stylesheet" href="ie-lt-8-styles.css" media="screen" />
<![endif]-->