Drupal module CSS character adjustment

36 Views Asked by At

I built Bachelor10.com with some assistance a few years back. I used the Vote Up/Down module. On pages like this, http://bachelor10.com/bachelor-handbook/top-10-bachelor-party-movies, the Vote Up/Down module is in triple digits on both positive and negative and is forcing wonky CSS issues. I'd prefer to avoid resetting all the counters, so could someone show me how to adjust the CSS in Drupal to allow for the character limits?

2

There are 2 best solutions below

0
On

Same solution but more future proof, set the width to auto.

div.vud-widget {
    width: auto;
}
0
On

In style.css, line 603 there is div.vud-widget. Change the width to 200 or higher.