Closed (fixed)
Project:
Vote Up/Down
Version:
5.x-1.x-dev
Component:
User interface
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
18 Jan 2008 at 01:17 UTC
Updated:
19 Mar 2008 at 09:21 UTC
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
Comment #1
sopia commentedI 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"
Comment #2
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.
Comment #3
unodewaal commentedAwesome thanks. got this fixed.