Remove Site Name from Header of Home Page Only

Permalink
I'm utilizing elegancia onyx theme and would like to remove the site name from the home page only and leave it on all child pages. I do not know how to change the code / header.php / css etc. Can anyone help provide me with some guidance of how I could accomplish this? I used my logo for the site name, but using a larger graphic on the page of my logo as well so it is repetitive. I'm using the most recent version of C5.

 
adajad replied on at Permalink Reply
adajad
You can change the header.php to check whether the page has cID=1, if it doesn't, then show the sitename.

I don't have a copy of the theme, but you can do:

<?php
if ($c->getCollectionID() != 1){
  //your site title code here
}
?>