By Stefan Fey on Saturday, 25 July 2015
Posted in Technical Issues
Replies 5
Likes 0
Views 334
Votes 0
Hi,
as I read in the forum the correct place for changing is:
components/com_easyblog/themes/greenie/css/styles.css
I try to change the color, i.e. line 12:
#eblog-wrapper{background:#f2f7e3;
When I hit F5 in Firefox, nothing changes, even with emptied FF-Cache. And I've tried many other lines to change the color, but nothing changes.
So what is the correct way to change the colors?
Hey Stefan,

I am really sorry for the delay of this reply as it is a weekend for us here.

I am not recommended you modify the css in style.css file, if you update to another new version, your custom css code will be get overridden.

It would be best you can add this following css code in your current template css file.

div#fd.eb.eb-greenie {
background: #f2f7e3 !important;
}
·
Sunday, 26 July 2015 11:58
·
0 Likes
·
0 Votes
·
0 Comments
·
thanks Arlex,
it works great for me. What about the symbol bar color, it has still that incredible green color, can I change it also in css/template.css?
regards
·
Monday, 27 July 2015 01:16
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Stefan,

Yep, you should place all your changes in the custom.css file of your Joomla template rather than the extension
·
Monday, 27 July 2015 01:39
·
0 Likes
·
0 Votes
·
0 Comments
·
hi Mark,
yes thats clear - but I have no idea how to code lines to change the symbol bar color:(
·
Wednesday, 29 July 2015 01:20
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello,

You can try this CSS code:

div#fd.eb .eb-navbar {
background: #f2f7e3 none repeat scroll 0 0 !important;
}


·
Wednesday, 29 July 2015 11:11
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post