And I can't help myself *head desk* Component seems to do this a lot - when you are replying, the drop down list for the icons has a black background and it makes it hard to see which icon you are choosing. You can fix that by amending part of the css. I think you already have css, probably in the custom css part of the wizard, or maybe in your theme layer, but if not then just add this into the custom css box. Change this:
which will give the box a white (#fff) background. You can change the white to any other colour of course and it will still work :) And it's possible it will need to be told it's important like so:
no subject
Date: 2006-12-04 08:53 am (UTC)And I can't help myself *head desk* Component seems to do this a lot - when you are replying, the drop down list for the icons has a black background and it makes it hard to see which icon you are choosing. You can fix that by amending part of the css. I think you already have css, probably in the custom css part of the wizard, or maybe in your theme layer, but if not then just add this into the custom css box. Change this:
SELECT {
FONT-SIZE: 11px; FONT-FAMILY: Arial, sans-serif; BACKGROUND-COLOR:
#000000
}
to this:
SELECT {
FONT-SIZE: 11px; FONT-FAMILY: Arial, sans-serif; BACKGROUND-COLOR:
#fff;
}
which will give the box a white (#fff) background. You can change the white to any other colour of course and it will still work :) And it's possible it will need to be told it's important like so:
BACKGROUND-COLOR: #fff !important;