Go Back   CodingForums.com > :: Client side development > HTML & CSS

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 10-02-2011, 09:19 AM   PM User | #1
timmcqu2
New to the CF scene

 
Join Date: Oct 2011
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
timmcqu2 is an unknown quantity at this point
IE7 layout problem

Hi
the homepage of this website: http://willowsinbloom.com.au/ does not display properly in IE 7.
There are 3 boxes under the banner email that only appear incorrectly in ie 7
Any ideas?
Thanks
Tim
timmcqu2 is offline   Reply With Quote
Old 10-02-2011, 10:28 AM   PM User | #2
SB65
Senior Coder

 
Join Date: Feb 2009
Location: West Yorkshire
Posts: 2,812
Thanks: 9
Thanked 681 Times in 675 Posts
SB65 will become famous soon enoughSB65 will become famous soon enough
IE7 doesn't support nth-child - and neither does IE8:

Code:
.feature-container:nth-child(2) {
    margin: 0 79px 0 0;
    width: 238px;
}
.feature-container:nth-child(3) {
    width: 214px;
}
.feature-container:nth-child(4) {
    float: right;
    width: 213px;
}
So all this css is ignored by IE7 and IE8. You'll need either to apply that css via a specific element id or rework the general css for .feature-container.
SB65 is offline   Reply With Quote
Old 10-03-2011, 04:15 AM   PM User | #3
timmcqu2
New to the CF scene

 
Join Date: Oct 2011
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
timmcqu2 is an unknown quantity at this point
Hi SB
thanks very much for that
I've made a change and it's fixed most of it - but the shop now button on the 3rd box isn't lining up properly in IE7

In IE8 the whole 3rd box is out of place
Any ideas?
Thanks
Tim
ps thank goodness for adobe browser labs
timmcqu2 is offline   Reply With Quote
Old 10-03-2011, 08:24 AM   PM User | #4
SB65
Senior Coder

 
Join Date: Feb 2009
Location: West Yorkshire
Posts: 2,812
Thanks: 9
Thanked 681 Times in 675 Posts
SB65 will become famous soon enoughSB65 will become famous soon enough
Looks OK on IE7 and IE8 to me - maybe you fixed it.
SB65 is offline   Reply With Quote
Reply

Bookmarks

Tags
css, ie7

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 05:58 AM.


Advertisement
Log in to turn off these ads.