Hello,

So, I must say that this ticker works great in most of the browsers I use but unfortunately I'm using it on my work project where the work place browser is currently IE.

I'm finding that the ticker seems to be visible in more than just the yellow box area but most of the sidebar. And then as it moves it moves up the sidebar till off the screen then comes back to the box and slowly moves up again. Basically, the whole data is visible and moves up the sidebar. But this is only prevailent on IE.

Tested that it does not do this in the following browsers:

Konquerer
Galeon
Firefox
Opera
Mozilla

Thanks,
Stacey

Comments

mathieu’s picture

Assigned: Unassigned » mathieu

I remember fixing that bug and I thought it was in the code I submitted.. I know there's a css trick to fix that, but I'm on Linux so I can't easily test.

It could be something in the following ... can you try it and tell me..? (You'll have to adapt it a bit, but that code "works for me") :

#block-taxonomy_ticker-0 {
  position: absolute;
  top: 43px;
  left: 454px;
  background: transparent;
}

#block-taxonomy_ticker-0 .content {
  background: none; 
  min-height: 10px;
}

#block-taxonomy_ticker-0 .title, #block-taxonomy_ticker-0 .blockfooter {
  display: none;
}

#scrollerClipper {
  position:absolute;
  background-color: transparent;
  border: none;
  height: 50px;
  width: 300px;
  padding-left: 10px;
}
.scrollerContentItem {
  border: none;
  margin: 0px;
  padding-right: 10px;
}

/*
#scrollPane {
  height: 50px;
  overflow: hidden;
}
staceyworrall’s picture

Ok, I tested it in IE and by adding the position:absolute in #scrollerClipper the data only displays in the box.

Thanks,
Stacey

mathieu’s picture

Status: Active » Fixed

I modified the css provided with the module to include this line (in both 4.6 and head). Thanks for the feedback!

dries’s picture

Status: Fixed » Closed (fixed)