-
AuthorPosts
-
May 22, 2015 at 5:10 pm #448473
Can you remind me what the classes are to style items for IE 8
Please check http://www.uvalltogether.org
Left Nav Menu should be Flush left and styled (see firefox or chrome)
ALL Together logo on home page gets smashed (below photo)
http://www.uvalltogether.org/community-coalitions/ — on this page the Accordion has lost its styling (blue headers white type)
About Page http://www.uvalltogether.org/about/ — PDF icons…images get smashed — in right sidebar
Thanks for your help…could you let me know if this looks OK in IE 9 10 or 11?
DavidMay 23, 2015 at 2:06 am #448806Hi David!
nth-child
won’t work on IE8, change this part in your style.css:#top.page-id-13 #main > div.container_wrap:nth-child(1) .av-special-heading .av-special-heading-tag { text-transform: none; font-weight: normal; } #top.page-id-13 #main > div.container_wrap:nth-child(1) .togglecontainer .toggler { background-color: #2d5a9c; color: #ffffff; font-size: 18px; font-weight: normal; } #top.page-id-13 #main > div.container_wrap:nth-child(1) .togglecontainer .toggle_content { border-width: 0; border-color: #2d5a9c; background-color: rgba(200,216,248,1); margin-bottom: 0; }
To:
#top.page-id-13 #main > div.container_wrap .av-special-heading .av-special-heading-tag { text-transform: none; font-weight: normal; } #top.page-id-13 #main > div.container_wrap .togglecontainer .toggler { background-color: #2d5a9c; color: #ffffff; font-size: 18px; font-weight: normal; } #top.page-id-13 #main > div.container_wrap .togglecontainer .toggle_content { border-width: 0; border-color: #2d5a9c; background-color: rgba(200,216,248,1); margin-bottom: 0; }
Cheers!
JosueMay 27, 2015 at 1:51 am #450376Thanks Josue,
So do you mean I don’t need to use the .avia-msie-8 class with this for IE 8?
It sounds like I should check my use of nth-child styles.
David
May 27, 2015 at 2:20 am #450382Well, you may need to use it if some of your fixes are affecting the view in other browsers. I don’t see any
avia-msie-8
classes in the code i mentioned though.Best regards,
Josue -
AuthorPosts
- You must be logged in to reply to this topic.