By Jeff Suddaby on Saturday, 08 March 2014
Posted in General Issues
Replies 5
Likes 0
Views 574
Votes 0
Hi,

I want to change the color of the title, both in the Eb blog posts, and in the various Eb modules I use on the site. (see attached screenshot).

How do I do this?

TIA - Jeff.
Hello Jeff,

Please share the link to that page here
·
Saturday, 08 March 2014 22:51
·
0 Likes
·
0 Votes
·
0 Comments
·
Sorry. Should have done that in the first place!

Here's the page: http://communityvoicesin-westbroadway.org/
·
Saturday, 08 March 2014 23:06
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Jeff,

To change the color of the blog post title, you could add the css codes below into your template's css file:


.blog-head h1
{
color: #666 !important;
}



To change the color of the module title, you can add this to your template's css file,


.uk-panel-title
{
color: #666 !important;
}


However, do take note that adding the second block of code could also affect your other module title.
·
Sunday, 09 March 2014 02:48
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks Mark,

That does the trick just fine.
·
Sunday, 09 March 2014 20:29
·
0 Likes
·
0 Votes
·
0 Comments
·
You are most welcome Jeff
·
Sunday, 09 March 2014 21:21
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post