Font Color on member list page

A place for discussion about skinning and design. Before posting questions here you should review the documentation about creating skins.

This thread is closed to new posts. You must sign in to post in the forums.
1/6/2011 1:05:28 PM
Gravatar
Total Posts 22

Font Color on member list page

The font color on my website is white. 

How do i change the font color on the member list page to black without effecting the rest of the website

Thanks Tony

1/6/2011 1:12:14 PM
Gravatar
Total Posts 2239

Re: Font Color on member list page

Hi Tony,

On the MemberList page there is a div wrapping the member list with a class of "memberlist".

This:

.memberlist {color: #000;}

would make the text on the page black unless there are other more specific rules in the CSS setting the color to something else. There probably are rules for the GridView setting the colors but that would depend on your skin.

To find any CSS class, use the FireBug add-on for Firefox. It is great for finding classes, troubleshooting CSS and a whole lot more.

Hope this helps,
Joe D.
 

1/6/2011 2:22:46 PM
Gravatar
Total Posts 22

Re: Font Color on member list page

Thanks Joe

Firebug is a great tool

Tony

1/9/2011 9:59:09 AM
Gravatar
Total Posts 18439

Re: Font Color on member list page

Member list page uses the GridView, so you may find other places where GridVew is used have the same problem such as under Administration > Content Manager.

If that is the case then you can fix all the grids like this:

.AspNet-GridView,
.AspNet-GridView a,
.AspNet-GridView a:link,
.AspNet-GridView a:visited,
.AspNet-GridView a:hover,
.AspNet-GridView a:active{ color: #000; }

Hope it helps,

Joe

1/10/2011 7:29:42 AM
Gravatar
Total Posts 22

Re: Font Color on member list page

Thanks Joe

You must sign in to post in the forums. This thread is closed to new posts.