I just installed vote up/down and it works great. However I noticed that in IE, the actual voting UI doesn't show up.

I traced the it to a span with class "vote-up-act". In IE, it appears taht without an explicit width, it is rendered as having zero width.

Solution appears to be to assign an explit width to the class in vote_up_down.css. I set it to 34px.

I'm attaching before and after screen shots for illustration.

CommentFileSizeAuthor
#1 edit.zip157.3 KBarvindsgulati
shot.png10.23 KBOpenlogic

Comments

arvindsgulati’s picture

Assigned: Unassigned » arvindsgulati
StatusFileSize
new157.3 KB

There is a simple solution to the problem:

goto to your vote_up_down folder, here edit the file vote_up_down.css and edit the lines 79-86 and change them to

vote-up-down-widget-alt .vote-up-act,
.vote-up-down-widget-alt .vote-up-inact:hover {
min-width:35px;
background: url(plus_act.png) no-repeat center 3px;
}
.vote-up-down-widget-alt .vote-up-inact,
.vote-up-down-widget-alt .up-inact {
min-width:35px;
background: url(plus_inact.png) no-repeat center 3px;
}

Basically the only change is addition of min-width field, you may want to adjust 35 to value of your liking
In the attached file you can find the screenshot and the edited css file for direct replacing

Arvind

marvil07’s picture

Status: Active » Closed (won't fix)

Please take a look to the update on the project page, now 5.x is not-really-maintained.