Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>IE 6 cannot understand multiple classes on an element correctly <strike>so i would suggest you put the </p> <pre><code>#featured-nav { width: 944px; height: 131px; background: url(/images/site/shadow.gif) bottom center no-repeat; } </code></pre> <p>as the last rule in the CSS so IE 6 picks it up last ..</strike></p> <p>you are bound to face similar problems elsewhere though ..</p> <p>To be sure either create full background buttons (the whole button in one image) / create multiple elements to define each side of the button / or scrap IE 6 ... </p> <p><strong>[EDIT]</strong> it does not apply to your case .. scrap my suggestion ..</p> <p>as an alternative, you can rename you selected classes and instead of using two like <code>left.activeSlide</code> have one named <code>left_activeSlide</code>...</p> <p><strong>[EDIT 2]</strong> here is some code for the specific template you mentioned in your comment</p> <p>They use the cycle plugin, and in the cycle.js file (at the end) they have the initialization code which is </p> <pre><code>function onBefore(){ var slide = $(this).attr('id'); $('#featured-nav ul li.activeSlide').removeClass('activeSlide'); $('#featured-nav ul li#' + slide).addClass('activeSlide'); } </code></pre> <p>now if you change it to </p> <pre><code>function onBefore(){ var slide = $(this).attr('id'); $('#featured-nav ul li.'+slide+'activeSlide').removeClass('leftactiveSlide rightactiveSlide middleactiveSlide'); $('#featured-nav ul li#' + slide).addClass(slide+'activeSlide'); } </code></pre> <p>it would work with classes named leftactiveSlide, middleactiveSlide rightactiveSlide </p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload