I use Drupal 7.26 and Black Hole 7.x-1.6 theme. I would like to change the colour of the site name and slogan as they appear in the top left corner of the page. Is there an easy way to do that?

Comments

ajay547’s picture

For default bartik theme the setting is here "admin/appearance/settings/bartik".

You can visit the provided admin link and check if your theme gives this functionality. Else you need do CSS changes, but I guess "admin/appearance/settings" , going to this link will help you to customize this in easy way.

Regards,

Thanks & Regards,

Ajay Singh

rejzer’s picture

Thanks!

Bartik has the colour options, indeed. Black Hole does not :(

It seams Black Hole has a special 'custom-style.css' in the '_custom' folder for the customisation of the css. Any idea which entry refers to the slogan/title colour ?

ajay547’s picture

You need to check that with firebug, and then you can apply the class your custom css.

Thanks & Regards,

Ajay Singh

rejzer’s picture

It turned out to be quite simple.

Just added

#site-name a {
color: #FFFFFF;
}
#site-slogan {
color: #FFFFFF;
}

into 'sites/all/themes/black_hole/_custom/custom-style.css' and changed the colours to white. It works fine.

Thank you Ajay for help!

ajay547’s picture

Welcome friend :)

Thanks & Regards,

Ajay Singh