skstid2012
skstid2012
  • Member since: Apr. 3, 2012
  • Offline.
Forum Stats
Member
Level 04
Programmer
Ie7 Css Float Problem Apr. 5th, 2012 @ 04:05 PM Reply

I'm having a problem floating an image where it needs to be in IE7:

Here's the CSS:

#main-wrapper #main .truck
{
	float: right;
	position: relative;
	top: 90.8%;
	left: 34.9%;
	z-index: 80;
}

I'm going to make a reply to show the screenshot in all other screens.

Ie7 Css Float Problem

skstid2012
skstid2012
  • Member since: Apr. 3, 2012
  • Offline.
Forum Stats
Member
Level 04
Programmer
Response to Ie7 Css Float Problem Apr. 5th, 2012 @ 04:06 PM Reply

Here's how it appears in ALL other browsers (including IE8+):

Ie7 Css Float Problem

skstid2012
skstid2012
  • Member since: Apr. 3, 2012
  • Offline.
Forum Stats
Member
Level 04
Programmer
Response to Ie7 Css Float Problem Apr. 5th, 2012 @ 04:12 PM Reply

Nevermind, I figured out the fix:

#main-wrapper #main .truck
{
	float: left;
	position: relative;
	top: 90.8%;
	left: 63%;
	z-index: 80;
}