2021-04-17, 10:30 PM
How can Colorize the header_welcomeblock_member in <span class="welcome">
Hello MyBB community
I'm trying to change the #panel .upper so when a user Logs in Display the (Name User) in Red Color. Could you help me with a code, any idea or support are Welcome
example of working CSS code in #panel .upper
This would be the result, Picture:
![[Image: Panel-Upper-Login-mybb.png]](https://camo.mybb.com/9beb033af42ec5a988e0fe2e7d4bd2d086837de3/68747470733a2f2f692e6962622e636f2f624c4a347673362f50616e656c2d55707065722d4c6f67696e2d6d7962622e706e67)
example of #panel .upper NOT working CSS code, that its the code i need, Just the Text Color RED,
This would be the result, Picture:
![[Image: Mybb-panel-login.png]](https://camo.mybb.com/5776d779e3876b5015d332f55bc249ce37ba0d29/68747470733a2f2f692e6962622e636f2f64345a487170592f4d7962622d70616e656c2d6c6f67696e2e706e67)
Templante header_welcomeblock_member
I'm sure I have a coding problem or an over styling problem but I have studied and I don't know how to fix it....
please, any guidance or suggestions would be appreciated.
as I always write, I am not a programmer but I like to customize my forum and at the same time I am learning little by little.
Thank You in advance

Hello MyBB community
I'm trying to change the #panel .upper so when a user Logs in Display the (Name User) in Red Color. Could you help me with a code, any idea or support are Welcome
example of working CSS code in #panel .upper
/* Colorear el Nombre de Usuario Cuando se Logea */
.welcome
a {
background-color: red;
color: white;
padding: 1em 1.5em;
text-decoration: none;
text-transform: uppercase;
}
This would be the result, Picture:
example of #panel .upper NOT working CSS code, that its the code i need, Just the Text Color RED,
.welcome
a {
color: red;
}
This would be the result, Picture:
Templante header_welcomeblock_member
<!-- Continuation of div(class="upper") as opened in the header template -->
<span class="welcome">{$lang->welcome_back} <a href="{$mybb->settings['bburl']}/member.php?action=logout&logoutkey={$mybb->user['logoutkey']}" class="logout">{$lang->welcome_logout}</a></span>
</div>
</div>
I'm sure I have a coding problem or an over styling problem but I have studied and I don't know how to fix it....

please, any guidance or suggestions would be appreciated.
as I always write, I am not a programmer but I like to customize my forum and at the same time I am learning little by little.
Thank You in advance
