By Jeff Suddaby on Wednesday, 19 March 2014
Posted in General Issues
Replies 5
Likes 0
Views 1.6K
Votes 0
Hi,

I want to change background colors of 4 of the EasySocial Login screen elements - as indicated in the attached screenshot.

How do I do this?

TIA - Jeff
Hi Jeff,

You can do this by adjusting the CSS for these elements.
You can either change them in the actual css file, but that means when there is an update of Easysocial and you install the update , this file gets overwritten again and you lose your adjustments.
I always create a separate file to overwrite the CSS.
Take a look at the link below it explains how to create such a file.

http://docs.stackideas.com/administrators/templating/template_overrides

Regards,
Danny
·
Wednesday, 19 March 2014 22:39
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks for sharing Danny Appreicate this very much!
·
Wednesday, 19 March 2014 22:40
·
0 Likes
·
0 Votes
·
0 Comments
·
I am trying to do the same and I cant seem to get it to work for me
I am looking to change the exact same items color

Have made a over-ride file

MY-TEMPLATE/html/com_easysocial/styles/toolbar.css
Nothing is changing

Would appreciate any help

Regards
Jeremey
·
Wednesday, 26 March 2014 19:01
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Jeremy,

You can also add the override code to your template's override css file, maybe that works better.

Below is the code I added to the file --> public_html/templates/my_template/css/custom.css

This code creates a transparent navbar, but you can off course adjust it to any color you want.
The last part of the code changes the color of the icons on the navbar.



body div#fd.es .es-toolbar .navbar-inner {
background-image: none;
border: 1px solid transparent;
}

.navbar-inner {
background-color: transparent;
}

body div#fd.es .es-toolbar .fd-nav>li>a [class^="ies-"],
body div#fd.es .es-toolbar .fd-nav>li>a [class*=" ies-"] {
color: #767676;
}


Kind regards,
Danny
·
Wednesday, 26 March 2014 20:01
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks for sharing Danny
·
Wednesday, 26 March 2014 22:32
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post