Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS ie7 transparent background

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #28705
    digitalbart
    Member

    Hello I have a table which I use to sort items via javascript. I apply sorting_desc/sorting_asc class to show an arrow to indicate which way the column is sorted. I am using a transparent png for the sort.

    The arrow will show up in IE7 but a white background is shown instead of the background image which is applied to the tr. This works in IE8 and FF 3 but not IE7.

    Any ideas greatly appreciated?

    Code:
    html ————-

    css———–

    .dataTables_wrapper table tr {
    background:url(/images/th-background.png) repeat-x left top;
    border-bottom:1px solid #FFFFFF;
    font-size: 13px;
    text-align: left;
    }

    thead th.sorting_asc {
    background: url(‘/images/sort-up-arrow-trans.png’) no-repeat center left;
    text-align:left;
    }

    thead th.sorting_desc {
    background:url(‘/images/sort-dn-arrow-trans.png’) no-repeat center left;
    text-align:left;
    }

    Country Visitors
    #73840

    You must have using IE6. IE7 has built in module for png fix.

Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘CSS’ is closed to new topics and replies.