IE woes...

Status
Not open for further replies.

bucks

New Member
Hey all,

I developed a site for a neighbour and its causing me some headaches in IE.
The site is fine in mozilla and opera but when it comes to IE the bottom of the page containing the contact form is getting messed up..

I know its the form thats causing the problem but what i should do is the question i cant answer.

Anyone be able to shed some light?

Cheers,
John.

Site is MDR consultants || Courses for Garda trainee applicants
 

Gavin

New Member
Works and looks fine for me. Using IE 6.0.2 and sent you a test message.

Nice Design.
 

davidbehan

New Member
Quite strange. I hate IE.

Try this... open the page in FF. Save the page using File > Save Page As on to your desktop. Then open the saved file using IE7. For some reason it is working fine now!!! I think when FF saves it, it is changing some of your code. I had a quick look through it but couldn't spot what the change was that was fixing things but that might help you on your way!

Rgds,

Dave

p.s. nice mini site! :D
 

louie

New Member
try adding text-align:left to the right and right2 css:
Code:
#right {
 float: right;
 width: 287px;
    border-right-width: 10px;
    margin-top: 50px;
    text-align:left;

}
#right2 {
 float: right;
 width: 280px;
    border-right-width: 50px;
    margin-top: 50px;
    text-align:left;
    
}

also you can use for #right float:left and for #right2 float:right and move the second above.
 

louie

New Member
ok you need to move the #right2 div above the #left1 div and set #left1 div to float:left and have the #right2 div to float:right
 

bucks

New Member
Right ive had another go at messing around with the css just there, does anyone spot any rendering probs ?
 
Status
Not open for further replies.
Top