Forums

Join
bbPress Support ForumsInstallationColor of text.

Info

Color of text.

  1. When I change the font color to "ffffff" in the code below, it does not apply it to all the text on the top of the page for registration/login etc. It only changes "welcome" and the rest like "admin", "logout", "register" and "lost password" are still the same. Where is the color of these fonts (all the text having to do with login, logout, forgot password, logout etc.) controlled in the CSS?

    .login {
    	position: absolute;
    	bottom: 31px;
    	left: 0;
    	font-weight: normal;
    	color: #ffffff;
    	width: 100%;
    	z-index: 1;
    	font-size: 12px;
    }

    Thank you.

  2. They're links, so look for
    a { color: #2e6e15; text-decoration: none; }

  3. Got it. Thanks.

  4. You must log in to post.