Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

CSS Forum


You are currently viewing our CSS Forum as a guest. Please register to participate.
Login



Reply
IE 8 issues with footer
Old 01-07-2013, 08:07 PM IE 8 issues with footer
Ultra Talker

Posts: 267
Name: Patric
Trades: 0
Hi there in my site here, the footer looks great in All browsers except IE 8.

http://apollo.skookumx.com/category

The footer should just have a grey background and link color... anyone know what the story is with that?? Would be greatly appreciated.

#footer {
background-color: #4B4B4B !important;
color: #DEE2E3;
font-family: Arial,Helvetica,sans-serif;
font-size: 11px;
margin-left: auto;
margin-right: auto;
text-transform: none;
width: 1140px;
}

also tried a hack like this

#footer {
background-color: #4B4B4B !important;
background-color: #4B4B4B\9; /* IE8 and below */
color: #DEE2E3;
font-family: Arial,Helvetica,sans-serif;
font-size: 11px;
margin-left: auto;
margin-right: auto;
text-transform: none;
width: 1140px;
}
Reckoner is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 01-08-2013, 11:39 AM Re: IE 8 issues with footer
chrishirst's Avatar
Defies a Status

Posts: 43,969
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
And for those without IE8 the problem is??????



And does it really matter? Because people still using IE8 probably won't even know or care about colour differences.
__________________
Chris. ->>
Please login or register to view this content. Registration is FREE
<<-

A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
chrishirst is online now
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 01-08-2013, 12:15 PM Re: IE 8 issues with footer
Skilled Talker

Posts: 90
Name: Lisa Forgan
Location: Colorado
Trades: 0
Just an FYI, you have broken href tags (missing the closing element). That could cause a problem too. Try fixing that and see if it helps.

Here is one of the code that is now fixed:

<ul> <li><a href="/jobs/Academic+Affairs">Academic Affairs Jobs</a></li> <li><a href="/jobs/Accounting_Finance_Purchasing">Accounting/Finance/Purchasing Jobs</a></li> <li><a href="/jobs/Administration">Administration Jobs</a></li> <li><a href="/jobs/Enrollment_Marketing">Enrollment/Marketing Jobs</a></li> <li><a href="/jobs/Human+Resources">Human Resources Jobs</a></li> <li><a href='/category'><strong>View All Categories</strong></a></li></ul> </li> </ul>


and here is the other area of code that is now fixed:

<ul> <li><a href="/jobs/location/Birmingham%2C+AL">Birmingham, AL Jobs</a></li> <li><a href="/jobs/location/Braintree%2C+MA">Braintree, MA Jobs</a></li> <li><a href="/jobs/location/Columbia%2C+MD">Columbia, MD Jobs</a></li> <li><a href="/jobs/location/Columbus%2C+OH">Columbus, OH Jobs</a></li> <li><a href="/jobs/location/Costa+Mesa%2C+CA">Costa Mesa, CA Jobs</a></li> <li><a href='/location'><strong>View All Locations</strong></a></li></ul> </li> </ul>
Puddlemut is offline
Reply With Quote
View Public Profile
 
Old 01-08-2013, 02:02 PM Re: IE 8 issues with footer
vangogh's Avatar
Post Impressionist

Posts: 11,146
Name: Steven Bradley
Location: Boulder, Colorado
Trades: 0
An image showing what the page looks like in IE8 would be helpful, though I'd first fix the link Lisa mentioned above to see if that does the trick.
__________________
l Search Engine Friendly Web Design |
Please login or register to view this content. Registration is FREE

l Design, Development, Marketing, and SEO Tutorials |
Please login or register to view this content. Registration is FREE

l
Please login or register to view this content. Registration is FREE
vangogh is offline
Reply With Quote
View Public Profile Visit vangogh's homepage!
 
Old 01-08-2013, 02:44 PM Re: IE 8 issues with footer
Ultra Talker

Posts: 267
Name: Patric
Trades: 0
Thanks all for taking a look.

I'm not sure what youmean about the unclosed element though... For example, this is what I see in the source code that includes the closing </a>

<a href="/jobs/Academic+Affairs/">Academic Affairs (8)</a>

I can provide a screen capture if you want but it's basically just white at the bottom in IE 8 where it should be black. Here's a screen cap of IE8... http://i.imgur.com/hZppX.png


And yes, it's still important unfortunately to make stuff look good in IE8... especially when your client is complaining about it.

http://www.w3schools.com/browsers/browsers_explorer.asp

Sadly, IE8 is used more than IE9...

Last edited by Reckoner; 01-08-2013 at 05:32 PM..
Reckoner is offline
Reply With Quote
View Public Profile
 
Old 01-08-2013, 05:09 PM Re: IE 8 issues with footer
chrishirst's Avatar
Defies a Status

Posts: 43,969
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
You do realise that IE8 doesn't 'know' what a <footer> element is, and therefore has no way of applying style rules to it.
__________________
Chris. ->>
Please login or register to view this content. Registration is FREE
<<-

A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
chrishirst is online now
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 01-08-2013, 05:34 PM Re: IE 8 issues with footer
Ultra Talker

Posts: 267
Name: Patric
Trades: 0
No, I did not... thanks.
Reckoner is offline
Reply With Quote
View Public Profile
 
Old 01-08-2013, 05:34 PM Re: IE 8 issues with footer
Skilled Talker

Posts: 90
Name: Lisa Forgan
Location: Colorado
Trades: 0
Quote:
Originally Posted by Reckoner View Post
Thanks all for taking a look.
I'm not sure what you mean about the unclosed element though... For example, this is what I see in the source code that includes the closing </a>
When I viewed your source code in IE8, I saw that you had one main closing </a>. But each of the items within the list need to have their own. Thus, it was showing up broken in the browser. The code I provided in the past post shows what is fixed.

For example the code I saw via view source was:
<li><a href="/jobs/Academic+Affairs">Academic Affairs Jobs</li>

But it should be:
<li><a href="/jobs/Academic+Affairs">Academic Affairs Jobs</a></li>


Quote:
Originally Posted by chrishirst View Post
You do realise that IE8 doesn't 'know' what a <footer> element is, and therefore has no way of applying style rules to it.
Chrishirst does have a good point. You can get around it if you are using javascript.
Such as:
<script>
document.createElement("footer");
</script>
You can learn more about it here: http://net.tutsplus.com/tutorials/ht...ctly-even-ie6/

Last edited by Puddlemut; 01-08-2013 at 05:42 PM..
Puddlemut is offline
Reply With Quote
View Public Profile
 
Old 01-08-2013, 05:42 PM Re: IE 8 issues with footer
Ultra Talker

Posts: 267
Name: Patric
Trades: 0
Thanks, I fixed that footer issue but just replacing <footer> with a <div> and applied the same styles to it

Hmm, I'm now concerned with that unclosed tag in IE8... will see if it effects things. Not sure how that would be happening.

Just tested by clicking around testing in IE8 and things looked fine.

Should be okay for now.. thanks for looking here everybody!

Last edited by Reckoner; 01-08-2013 at 05:47 PM..
Reckoner is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to IE 8 issues with footer
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.33256 seconds with 11 queries