I've installed this module, but there's an ugly gray border around every single category. I've tried lots of settings changes, tried the CSS code suggested here:
http://drupal.org/node/288338

Even tried adding a border: hidden

But nothing works. Any suggestions? :/

Comments

sangue’s picture

Just realised this fix only works when the settings are turned to collapsible: http://drupal.org/node/288338

Is there any way to remove the border when the links are set to not collapsible?

nancydru’s picture

Status: Active » Fixed

In weblinks.css at line 47 you will find:

/* If your theme doesn't put a border around fieldsets, you might want to uncomment the following. */
/*.weblinkCat fieldset.collapsible {
  border: 1px ridge #896969;
}  /* */

Since your theme apparently applies the border (unless you uncommented that code), you could use a variant:

.weblinkCat fieldset {
  border: none;
}  /* */

Status: Fixed » Closed (fixed)

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