Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #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?
    David

    #448806

    Hi 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!
    Josue

    #450376

    Thanks 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

    #450382

    Well, 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

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.