MyBB Community Forums

Full Version: User CP header change (howto?)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'd like to know how I change the table headers in the userCP
As you see the normal headers don't match :p
Sorry for double post.

Right now I made a new class and I'm changing the whole UCP Templates set.
Replacing "thead" by "ucphead".
Is this right or is there an easier way? ^_^
Yeah it's only this waySmile

as thead is the class used in general all over the board for headers.
so u will have to change it to ur own new customized themeSmile

and yes in all the templates related to the usercp.

regards
K, thanks, I'll probably need some more help the following days because a lot of thinks look weird because of the table resizing, I'll let you know :p

Thanks a lot for your help so far
well thead doesn't have any resizing codes. it's just a backgorund

so ur new ucphead class should looks as
.ucphead {
background: #026CB1 url(images/urimg.gif) top left repeat-x;
color: #ffffff;
}
.ucphead a:link {
	color: #ffffff;
             text-decoration: none;
}
.ucphead a:visited {
	color: #ffffff;
              text-decoration: none;
}
.ucphead a:hover {
	color: #ffffff;
             text-decoration: none;
}


regards