Last edited by Sandara on May 23rd 2013, 8:52 pm; edited 1 time in total
+2
Sanket
Sandara
6 posters
Change text and link color in Forumotion Toolbar
Sandara- Forumember
- Posts : 106
Reputation : 5
Language : English, Filipino
Location : Somewhere over the rainbow
Hello! Don't shoot me for asking this. I already tried CSS to change the color of the text and link inside the "Welcome (USERNAME)" in the toolbar, but I failed. Can someone please help me do that? If it's useful, forum version is Phpbb3. Thank you!
Last edited by Sandara on May 23rd 2013, 8:52 pm; edited 1 time in total
Sanket- ForumGuru
- Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai
Add this to your css. It changes color of welcome as well as username.
- Code:
#fa_welcome {
color: #ff0000 !important;
}
Ultron's Vision- Forumember
- Posts : 631
Reputation : 45
Language : English | German | HTML | JavaScript | PHP | C++ | Perl | Java
Location : Vienna, Austria
You can modify the text color and the background with CSS and JavaScript and under ACP -> Modules -> Toolbar -> Configuration, though you will have to pay to modify the copyrights of the toolbar, which is what you're trying to do, I think.
Sandara- Forumember
- Posts : 106
Reputation : 5
Language : English, Filipino
Location : Somewhere over the rainbow
@Sanket: the code didn't work. Here's my CSS:
Please tell me if there's something wrong in what I did. Thanks a lot!
@Ultron's: Thanks to your reply. Yes, I used that to change the color of the toolbar itself, but what I need is the text inside the "Welcome". I've seen a handful of site that has edited the colors of the toolbar and text inside it. Correct me if I'm wrong but the only thing that was not allowed is to remove the copyright.
- Code:
#fa_search, #fa_share {
display: none !important;
}
#fa_welcome {
color: #FEF9CF !important;
}
#fa_toolbar, #fa_toolbar_hidden {
background-color: #000000 !important;
}
#fa_toolbar #fa_right #notif_list li.unread {
font-weight: bold;
background-color: #000000;
}
#fa_menulist, #fa_usermenu {
background-color: #000000 !important;
}
Please tell me if there's something wrong in what I did. Thanks a lot!
@Ultron's: Thanks to your reply. Yes, I used that to change the color of the toolbar itself, but what I need is the text inside the "Welcome". I've seen a handful of site that has edited the colors of the toolbar and text inside it. Correct me if I'm wrong but the only thing that was not allowed is to remove the copyright.
Sanket- ForumGuru
- Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai
Whats your forum URL?
You added this code already.
You added this code already.
- Code:
#fa_welcome {
color: #FEF9CF !important;
}
Sandara- Forumember
- Posts : 106
Reputation : 5
Language : English, Filipino
Location : Somewhere over the rainbow
http://isolationrpg.topicboards.com/
Thanks a lot!
edit: the code just changed the "Welcome" message, not the contents when clicked.
Thanks a lot!
edit: the code just changed the "Welcome" message, not the contents when clicked.
Ultron's Vision- Forumember
- Posts : 631
Reputation : 45
Language : English | German | HTML | JavaScript | PHP | C++ | Perl | Java
Location : Vienna, Austria
Try using this additionally to the code Sanket provided:
- Code:
#fa_welcome * {
color: #fef9cf !important;
}
Sandara- Forumember
- Posts : 106
Reputation : 5
Language : English, Filipino
Location : Somewhere over the rainbow
Thanks Ultron. Still doesn't work.
Sir Chivas™- Helper
- Posts : 6980
Reputation : 457
Language : EN, FR, ES
Location : || CSS || HTML || Graphics Designs || Support ||
Hi,
Remove the codes given above and try this:
Remove the codes given above and try this:
- Code:
#fa_right #fa_menu #fa_welcome, #fa_right.notification #fa_menu #fa_welcome {
color: #FFFFFF !important;
}
Sandara- Forumember
- Posts : 106
Reputation : 5
Language : English, Filipino
Location : Somewhere over the rainbow
T___T Sorry, Sir Chivas, the code still doesn't work.
Here's my CSS, hope this helps:
Edit: I also tried #fa_menulist { color: #FFFFFF !important} and #fa_menulist:link {color: #FFFFFF !important}, hoping that i get it, but i fail. I just said it thinking it might help...
Here's my CSS, hope this helps:
- Code:
#fa_search, #fa_share {
display: none !important;
}
#fa_right #fa_menu #fa_welcome, #fa_right.notification #fa_menu #fa_welcome {
color: #FFFFFF !important;
}
#fa_toolbar, #fa_toolbar_hidden {
background-color: #000000 !important;
}
#fa_toolbar #fa_right #notif_list li.unread {
font-weight: bold;
background-color: #000000;
}
#fa_menulist, #fa_usermenu {
background-color: #000000 !important;
}
Edit: I also tried #fa_menulist { color: #FFFFFF !important} and #fa_menulist:link {color: #FFFFFF !important}, hoping that i get it, but i fail. I just said it thinking it might help...
Last edited by Sandara on May 23rd 2013, 4:49 pm; edited 1 time in total
Sir Chivas™- Helper
- Posts : 6980
Reputation : 457
Language : EN, FR, ES
Location : || CSS || HTML || Graphics Designs || Support ||
Can you provide a screenshot of how you have the setting through the ACP? ACP >> Modules >> Toolbar >> Configuration
Sandara- Forumember
- Posts : 106
Reputation : 5
Language : English, Filipino
Location : Somewhere over the rainbow
Sir Chivas™- Helper
- Posts : 6980
Reputation : 457
Language : EN, FR, ES
Location : || CSS || HTML || Graphics Designs || Support ||
Oh, it turns white when clicking?
Try this:
Try this:
- Code:
#fa_right.welcome #fa_menu #fa_welcome {
color: #fff;
background-color: #000;
}
Sandara- Forumember
- Posts : 106
Reputation : 5
Language : English, Filipino
Location : Somewhere over the rainbow
Ultron's Vision- Forumember
- Posts : 631
Reputation : 45
Language : English | German | HTML | JavaScript | PHP | C++ | Perl | Java
Location : Vienna, Austria
Try using this in your CSS:
- Code:
ul#fa_menulist li {
color: #fef9cf !important;
}
Sandara- Forumember
- Posts : 106
Reputation : 5
Language : English, Filipino
Location : Somewhere over the rainbow
^ the color still doesn't change.
Ultron's Vision- Forumember
- Posts : 631
Reputation : 45
Language : English | German | HTML | JavaScript | PHP | C++ | Perl | Java
Location : Vienna, Austria
Hm, try it with this code...
I excluded the !important and added a more explicit selector.
- Code:
ul#fa_menulist li a {
color: #FEF9CF;
}
I excluded the !important and added a more explicit selector.
Sandara- Forumember
- Posts : 106
Reputation : 5
Language : English, Filipino
Location : Somewhere over the rainbow
:eek: nope, still not working. Please check my CSS to see if i did anything wrong:
- Code:
#fa_search, #fa_share {
display: none !important;
}
#fa_right.welcome #fa_menu #fa_welcome {
color: #fff;
background-color: #000;
}
ul#fa_menulist li a {
color: #FEF9CF;
}
#fa_toolbar, #fa_toolbar_hidden {
background-color: #000000 !important;
}
#fa_toolbar #fa_right #notif_list li.unread {
font-weight: bold;
background-color: #000000;
}
#fa_menulist, #fa_usermenu {
background-color: #000000 !important;
E-Mark- Active Poster
- Posts : 1411
Reputation : 169
Language : English
Location : Bitcoin
Add this on your CSS:
- Code:
#fa_menu, #fa_welcome {
background-color: black !important;
color: white !important;
}
#fa_usermenu {
color: white !important;
}
Sandara- Forumember
- Posts : 106
Reputation : 5
Language : English, Filipino
Location : Somewhere over the rainbow
Edit: nvm. i figured. the code worked for the fa_rank and the PM and post, thank you very much. But the links on the other side didn't change its color. I do want to change their colors.
E-Mark- Active Poster
- Posts : 1411
Reputation : 169
Language : English
Location : Bitcoin
Yeah try removing the other codes then check.
Add this again on your CSS:
Change the red to your desire color .
Add this again on your CSS:
- Code:
#fa_menulist a:link, #fa_menulist a:visited {
color: red !important;
}
Change the red to your desire color .
Sandara- Forumember
- Posts : 106
Reputation : 5
Language : English, Filipino
Location : Somewhere over the rainbow
Aaaaaaaaaaand, finally! You're the man, E-Mark. Thanks a lot!
(And thank you too, Sanket, Ultron and Sir Chivas)
(And thank you too, Sanket, Ultron and Sir Chivas)
SLGray- Administrator
- Posts : 51554
Reputation : 3523
Language : English
Location : United States
Topic Solved & Locked |
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.