Using the newest vote up down module you can't see the plus sign in Internet Explorer (works fine with firefox). Anybody figure out a work around?

Comments

sopia’s picture

Assigned: Unassigned » sopia
Priority: Critical » Normal
Status: Active » Fixed

I think I figured it out :)

In case anybody else has this problem, the code that needed to be changed:

change this in vote_up_down.css:
.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;
}

to this:
.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: 44px;
height: 22px;
}

NOTE: THE ONLY NEEDED CHANGE WAS "width: auto" changed to "width:44px"

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.

unodewaal’s picture

Awesome thanks. got this fixed.