This is a Hitskin.com skin preview
Install the skin • Return to the skin page
4 posters
Toolbar Text Color
Rogo- Forumember
- Posts : 262
Reputation : 1
Language : English
- Post n°1
Toolbar Text Color
Is there a way to modify the text color of the new toolbar? White on grey isn't the best.
Sanket- ForumGuru
- Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai
- Post n°2
Re: Toolbar Text Color
https://help.forumotion.com/t120381-customize-your-toolbar-through-css-and-javascript
Can change the background color.
Do you want to change the font color for all the text?
Can change the background color.
Do you want to change the font color for all the text?
Rogo- Forumember
- Posts : 262
Reputation : 1
Language : English
- Post n°3
Re: Toolbar Text Color
We have a grey toolbar on the bottom. I made an image similar to it so I am wanting to change all the text like the forumotion link, share, welcome, and notifications to a different color if I can.
!_NICK_!- Active Poster
- Posts : 1505
Reputation : 69
Language : English, HTML, and CSS
Location : In the middle of no return.
- Post n°4
Re: Toolbar Text Color
Yes, you can do that with CSS. Just find the element.
Rogo- Forumember
- Posts : 262
Reputation : 1
Language : English
- Post n°5
Re: Toolbar Text Color
Do I have to keep the spaces because the text color didn't change.
SLGray- Administrator
- Posts : 51554
Reputation : 3523
Language : English
Location : United States
- Post n°6
Re: Toolbar Text Color
Post the code that you used.
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.
Rogo- Forumember
- Posts : 262
Reputation : 1
Language : English
- Post n°7
Re: Toolbar Text Color
- Code:
#fa_toolbar {
color: #892110 !important;
}
Basically what was posted above.
Rogo- Forumember
- Posts : 262
Reputation : 1
Language : English
- Post n°8
Re: Toolbar Text Color
That took care of welcome and notifications but not share and the forumotion link. Going with that red, I think it would be nice to make it bold if I can.
- Spoiler:
- Code:
ul#picture_legend {
background-position: center;
background-repeat: no-repeat;
background-image: url('http://i34.tinypic.com/b80g87.png');
text-align: center;
padding: 24px 0;}
#fa_toolbar, #fa_toolbar_hidden {background: url('http://i71.servimg.com/u/f71/13/02/75/38/untitl10.png');}
/*background: linear-gradient( 0deg, #d1cfd0, #f7f7f7 );
color: #808080 !important;*/
}
#fa_search {
display: none !important;
}
#fa_textarea {
width: 30px !important;
-webkit-transition-duration: 400ms;
-webkit-transition-property: width;
-webkit-transition-timing-function: ease;
-moz-transition-duration: 400ms;
-moz-transition-property: width;
-moz-transition-timing-function: ease;
-o-transition-duration: 400ms;
-o-transition-property: width;
-o-transition-timing-function: ease;
}
#fa_textarea:focus {
width: 200px !important;
}
#page-header .navbar .inner .navlinks {
border-bottom: none !important;
}
#page-header .navbar .inner #search-box {
display: none !important;
}
#fa_toolbar, #fa_toolbar a {
color: #892110 !important;
}
SLGray- Administrator
- Posts : 51554
Reputation : 3523
Language : English
Location : United States
- Post n°10
Re: Toolbar Text Color
Here is the share one:
- Code:
#fa_share_text {
color: YOUR COLOR !important;
}
- Code:
#fa_icon, #fa_toolbar #fa_service {
color: Your Color !important;
}
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.
Rogo- Forumember
- Posts : 262
Reputation : 1
Language : English
- Post n°11
Re: Toolbar Text Color
- Code:
#fa_share_text {
color: #892110;
}
#fa_icon, #fa_toolbar #fa_service {
color: #892110;
}
SLGray- Administrator
- Posts : 51554
Reputation : 3523
Language : English
Location : United States
- Post n°12
Re: Toolbar Text Color
Add !important.
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.
Rogo- Forumember
- Posts : 262
Reputation : 1
Language : English
- Post n°13
Re: Toolbar Text Color
Still nothing.
Detected error
We have counted a different number of "{" and of "}". It means your CSS risks to be not valid and will not be posted correctly on your forum.
We advise you to reread your code.
- Code:
ul#picture_legend {
background-position: center;
background-repeat: no-repeat;
background-image: url('http://i34.tinypic.com/b80g87.png');
text-align: center;
padding: 24px 0;}
#fa_toolbar, #fa_toolbar_hidden {background: url('http://i71.servimg.com/u/f71/13/02/75/38/untitl10.png');}
/*background: linear-gradient( 0deg, #d1cfd0, #f7f7f7 );
color: #808080 !important;*/
}
#fa_search {
display: none !important;
}
#fa_textarea {
width: 30px !important;
-webkit-transition-duration: 400ms;
-webkit-transition-property: width;
-webkit-transition-timing-function: ease;
-moz-transition-duration: 400ms;
-moz-transition-property: width;
-moz-transition-timing-function: ease;
-o-transition-duration: 400ms;
-o-transition-property: width;
-o-transition-timing-function: ease;
}
#fa_textarea:focus {
width: 200px !important;
}
#page-header .navbar .inner .navlinks {
border-bottom: none !important;
}
#page-header .navbar .inner #search-box {
display: none !important;
}
#fa_toolbar div, #fa_toolbar a {
color: #892110 !important;
}
#fa_share_text {
color: #892110; !important.
}
#fa_icon, #fa_toolbar #fa_service {
color: #892110; !important.
}
Detected error
We have counted a different number of "{" and of "}". It means your CSS risks to be not valid and will not be posted correctly on your forum.
We advise you to reread your code.
SLGray- Administrator
- Posts : 51554
Reputation : 3523
Language : English
Location : United States
- Post n°14
Re: Toolbar Text Color
- Code:
#fa_share_text {
color: #892110; !important.
}
#fa_icon, #fa_toolbar #fa_service {
color: #892110; !important.
}
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.
Rogo- Forumember
- Posts : 262
Reputation : 1
Language : English
- Post n°15
Re: Toolbar Text Color
That works for share but not for the forumotion link.
SLGray- Administrator
- Posts : 51554
Reputation : 3523
Language : English
Location : United States
- Post n°16
Re: Toolbar Text Color
It works when I try it on the support.
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.
Rogo- Forumember
- Posts : 262
Reputation : 1
Language : English
- Post n°17
Re: Toolbar Text Color
- Code:
ul#picture_legend {
background-position: center;
background-repeat: no-repeat;
background-image: url('http://i34.tinypic.com/b80g87.png');
text-align: center;
padding: 24px 0;}
#fa_toolbar, #fa_toolbar_hidden {background: url('http://i71.servimg.com/u/f71/13/02/75/38/untitl10.png');}
/*background: linear-gradient( 0deg, #d1cfd0, #f7f7f7 );
color: #808080 !important;*/
}
#fa_search {
display: none !important;
}
#fa_textarea {
width: 30px !important;
-webkit-transition-duration: 400ms;
-webkit-transition-property: width;
-webkit-transition-timing-function: ease;
-moz-transition-duration: 400ms;
-moz-transition-property: width;
-moz-transition-timing-function: ease;
-o-transition-duration: 400ms;
-o-transition-property: width;
-o-transition-timing-function: ease;
}
#fa_textarea:focus {
width: 200px !important;
}
#page-header .navbar .inner .navlinks {
border-bottom: none !important;
}
#page-header .navbar .inner #search-box {
display: none !important;
}
#fa_toolbar div, #fa_toolbar a {
color: #892110 !important;
}
#fa_share_text {
color: #892110 !important;
}
#fa_icon, #fa_toolbar #fa_service {
color: #892110 !important;
}
There you go
Rogo- Forumember
- Posts : 262
Reputation : 1
Language : English
- Post n°19
Re: Toolbar Text Color
That got it. Do you know if I can bold the text?
Rogo- Forumember
- Posts : 262
Reputation : 1
Language : English
- Post n°20
Re: Toolbar Text Color
Thank you very much.