I dont know if it is because IE has been updated, but the plus image for voting in the alternative
widget does show up. There is only a line about 1px. All works fine in Mozilla.

Comments

frjo’s picture

With "IE has been updated" do you refer to Internet Explorer 7?

blackrain’s picture

Yes Internet Explorer 7. (Maybe i need to start a new post for this) But also when using the story link with other modules e.g. page the finish story link post (node) is a little bit smaller than the others (page), (image) and so on. Not sure if this only happens with certain themes.

chrishaslam’s picture

I had the same issue and fixed it in IE7 (and still works in firefox) by doing the following in vote_up_down.css

getting rid of background: transparent, commented out below

.vote-up-down-widget-alt .vote-points-label {
  font-size: 0.45em;
  /* background: transparent;  */
  padding: 0 0 0px 2px;
}
.vote-up-down-widget-alt .vote-up-act,
.vote-up-down-widget-alt .vote-up-inact,
.vote-up-down-widget-alt .up-inact {
  display: block;
  width: auto;
  height: 22px;
}

Change width: auto; to a fixed width......width: 75px; worked nicely for me although you may have to experiment with this value for your theme.

Let me know if this fixed your issue or if there are other implications of getting rid of background: transparent, I haven't found any yet but this may well create another issue.

frjo’s picture

Status: Active » Closed (duplicate)