By paul lewis on Tuesday, 02 December 2014
Posted in General Issues
Replies 6
Likes 0
Views 866
Votes 0
Is it possible to change the color of the featured posts on the front page? Kind of like the accepted answer coloring on the simplistic template? I inspect the element but anything i change changes all of the posts css.
Hello Paul,

You can use this CSS code in your template css file:

.discuss-item.is-featured {
background: rgba(223, 255, 244, 0.46);
background: none repeat scroll 0% 0% #FEFEF6;
border: 1px solid #CDDFA1;
}


Hope this helps.
·
Tuesday, 02 December 2014 23:34
·
0 Likes
·
0 Votes
·
0 Comments
·
style.css or what css file?
·
Wednesday, 03 December 2014 01:58
·
0 Likes
·
0 Votes
·
0 Comments
·
i put it in my template style.css and custom.css as well as simplistics css file and it does not work
·
Wednesday, 03 December 2014 02:09
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Paul,

It look like your current template do not have template css file, can you try apply in the following code in your JoomlaFolder/templates/cashemir/css/custom.css file as well and see how it goes?


.discuss-item.is-featured {
background: rgba(223, 255, 244, 0.46) !important;
background: none repeat scroll 0% 0% #FEFEF6 !important;
border: 1px solid #CDDFA1 !important;
}
·
Wednesday, 03 December 2014 02:11
·
0 Likes
·
0 Votes
·
0 Comments
·
that got it thanks
·
Wednesday, 03 December 2014 02:33
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Paul,

You're welcome.
·
Wednesday, 03 December 2014 10:49
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post