MyBB Community Forums

Full Version: changing <legend> font color?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello guys,

My theme is very dark and very black but the font color that has <legend> around it is black, i need it to be white. How can i change this? I want to make it for the entire forum, not just individual lines. Lines with <legend> around it are found mostly in the registration page.
Open up the theme you wish to change it for in the theme editor and scroll to the Additional CSS area at the bottom.

In the additional CSS textarea put the following:
legend {
  color: #fff;
}

That will make the text white.

Chris
Chris Boulton Wrote:Open up the theme you wish to change it for in the theme editor and scroll to the Additional CSS area at the bottom.

In the additional CSS textarea put the following:
legend {
  color: #fff;
}

That will make the text white.

Chris

Fantastic thank you.