How can I change that blue color in the EasySocial Navigation Header? In themes / wireframe I can't find any css.
Thank you!
Thank you!
Josh Lewis wrote:
What do you mean doesn't like to be modified externally? My method for modifying extension styling is to add CSS to the actual template itself (doesn't matter which style sheet). So to make EasySocial have a dark header I would add the following code to your template css file:
body div#es-wrap .es-toolbar .navbar-inner {
background-image: -ms-linear-gradient(top, #555555 0%, #222222 100%) !important;
background-image: -moz-linear-gradient(top, #555555 0%, #222222 100%) !important;
background-image: -o-linear-gradient(top, #555555 0%, #222222 100%) !important;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #555555), color-stop(1, #222222)) !important;
background-image: -webkit-linear-gradient(top, #555555 0%, #222222 100%) !important;
background-image: linear-gradient(to bottom, #555555 0%, #222222 100%) !important;
}
body div#es-wrap .es-toolbar .es-navbar-search, body div#es-wrap .es-toolbar .es-navbar-search .search-query {
background: #333333 !important;
}
The important statements overwrite any of the original code. Keep in mind that you will probably need to clear your cache to see the changes. The example above changes the header but is by no means complete to the rest of the site. I suppose if folks would like I could create the styling for a dark theme or whatever coloring. I may not be uber good with PHP and such, but I know my CSS very well.
In case anyone is interested in how I got this code I used FireBug to get the selectors and used a gradient generator to get the color codes. Then I injected important statements and modified the final color to one that is in between the gradients.
Hi Randall,
Can you please create a tutorial showing me how to change some colors on ES like the tool bar and some buttons? Then show me how to save the changes in my template override folder so i won't have to do it again when ES has an update. I have extplorer already and made a change to the email logos thanks to your tutorial. I know this will take up your time but i would greatly appreciate it!!!!PLEASE HELP ME!!!!!
Paul wrote:
Hey @Randall M, Did you ever create this guide?