Looks like you customized WP Remix theme but got caught up in validation errors which you need to correct.
Btw, in FAQ of WP Remix – “All the buyers will be sent a free technical upgrade forever.” Just thought you might want to take them up on that as well.
more of a trying force a square peg into round hole than an IE issue really.
The issue is with the CSS for cforms contact form in the sidebar. The sidebar is set to 350px wide and the form is set to 450px wide.
The 2 lines below containing width:450px are the cause. Change width attribute to something smaller or perhaps even delete it.
.cform {
margin:10px 0pt 0pt;
width:450px;
}
.linklove {
margin:6px 0pt 10px !important;
padding:0pt !important;
text-align:left !important;
width:450px;
}
note that these are not from the main theme css but will be found inside the cforms pluggin folder.
Or just remove the contact form entirely – you dont really need it on every page.
Thread Starter
nology
(@nology)
Zeniph… Thanks! That fixed it.