By Syabab on Friday, 21 June 2019
Posted in General Issues
Replies 4
Likes 0
Views 471
Votes 0
Hi,

Where to change button color? (share button, new page button, etc...)
When I change toolbar color setting, button did not change color.

Thanks
Hey Syabab,

Where to change button color? (share button, new page button, etc...)

You can change these button colors from your site backend > Components > EasySocial > Settings > Layout > Styling tabhttps://take.ms/o77If

When I change toolbar color setting, button did not change color.

I cannot replicate this locally. It seems like the login credentials that you provide for your site backend is not correct. I tried login but cannot. Can you check that and update to us.
·
Friday, 21 June 2019 12:37
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks!

What about some menu & text? It still blue...see my attached image.

Thanks.
·
Friday, 21 June 2019 13:45
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey there,

What about some menu & text? It still blue...see my attached image.

For these you need to use custom css, there is no settings like for the buttons to change those.

You can follow my example below and change the your desired colors and place it at your site backend > EasySocial > Themes > Custom CSS
[gist type="css"]
/* To change the text and the border-bottom color of the profile header navigation bar*/
body #es .es-profile-header-nav .is-active .es-profile-header-nav__link {
color: #e24a80;
border-bottom-color: #e24a80;
}
/*To change the border-right color of the sidebar*/
body #es .o-tabs--stacked .o-tabs__item.active > .o-tabs__link {
border-right: 2px solid #e24a80;
}
/*To change the border color of the profile header navigation's dropdown links*/
body #es .es-profile-header-nav .is-active > .es-profile-header-nav__dropdown-link {
border-color: #e24a80;
}
/*To change the color of the profile header' title*/
body #es .es-profile-header__title > a {
color: #e24a80;
}
[/gist]
·
Friday, 21 June 2019 16:19
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post