By Randall McCallum on Saturday, 07 December 2013
Posted in General Issues
Replies 7
Likes 0
Views 1K
Votes 0
I want to be able to use a different color other than the blue, but don't know where to start to change the color of the wireframe theme in EasySocal.

I will also need to change the menubar, and button colors.

Is this a big challenge to change the theme color? I have downloaded a template from Rockettheme and the template supports various color schemes, and rather than use blue, I am looking into another color, but I will need to match up the color in EasySocial.

Any help appreciated.

Randall
This is the code that is used to style the toolbar


body div#es-wrap .es-toolbar .navbar-inner {
background-color: #6AA8DC;
background-image: linear-gradient(to bottom, #6BAEE2, #699ED4);
background-repeat: repeat-x;
border: 1px solid #6CA0D9;
border-radius: 3px;
height: 35px;
min-height: 35px;
padding-left: 0;
padding-right: 0;
position: relative;
}
·
Saturday, 07 December 2013 00:58
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks Mark,

And this is located where? In the backend of ES wireframe theme?
·
Saturday, 07 December 2013 01:35
·
0 Likes
·
0 Votes
·
0 Comments
·
Randall, rather than modifying the css file, you should add these css files into your template's css file
·
Saturday, 07 December 2013 02:08
·
0 Likes
·
0 Votes
·
0 Comments
·
Mark:
Are you sure about this code? I added it to my template.css file and there was no change...

body div#es-wrap .es-toolbar .navbar-inner {
background-color: #FF0000;
background-image: linear-gradient(to bottom, #FF0000, #aa0000);
background-repeat: repeat-x;
border: 1px solid #6CA0D9;
border-radius: 3px;
height: 35px;
min-height: 35px;
padding-left: 0;
padding-right: 0;
position: relative;
}

I copied and pasted from your code window above and then changed a couple of color codes to see what happened, flushed the cache and there was no change. Can you re-look at the code and see if another tweak is needed?
Thanks in advance!
Michael Leavitt - Orem, Utah - http://www.TheHomeInspector.com - Michael Leavitt & Co Inspections, Inc.
·
Monday, 09 December 2013 22:26
·
0 Likes
·
0 Votes
·
0 Comments
·
Oops... I modified the wrong template file. I should have hit the refresh button on my FTP program before I modified the wrong file.
Thanks again!
Michael Leavitt - Orem, Utah - http://www.TheHomeInspector.com - Michael Leavitt & Co Inspections, Inc.
·
Monday, 09 December 2013 23:55
·
0 Likes
·
0 Votes
·
0 Comments
·
Okay, I got part of it. Is there more code for the right search portion of the bar? See attached image.
Michael Leavitt - Orem, Utah - http://www.TheHomeInspector.com - Michael Leavitt & Co Inspections, Inc.
·
Tuesday, 10 December 2013 00:06
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Michael,

You should actually use Firebug to inspect the toolbar It's extremely easy and fun too. You can use the selector below to style the searchbox


body div#es-wrap .es-toolbar .es-navbar-search{
}
·
Tuesday, 10 December 2013 00:50
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post