Page 1 of 1

Site name not appearing in default template [solved]

Posted: Tue Dec 19, 2006 11:51 am
by magiric
I've just installed CMSMS and I'm impressed  :)

I'm using the default 'left simple + 1 column' template but can't work out how to get the site name to appear. It's set up correctly in  'Global Settings' but all I see is the standard CMSMS banner/logo. Do I need to provide a custom banner? If so, where do I put it?

I'm obviously missing something very basic but would appreciate a prod in the right direction.

Many thanks.

Re: Site name not appearing in default template

Posted: Tue Dec 19, 2006 12:00 pm
by Dr.CSS
The header logo is set in the Layout CSS if you look in the "Layout: Left sidebar + 1 column" you will see...

div#header h1 a {
/* you can set your own image here */
  background: #385C72 url(images/cms/logo1.gif) no-repeat 0 12px;
  display: block;
  height: 80px;            /* adjust according your image size */
  text-indent: -999em;  /* this hides the text */
  text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

This images/cms/logo1.gif    is where the default logo is but you should put yours in uploads/images and call it with (uploads/images/yourimage.jpg) or whatever the extension is .gif, .png, etc. and adjust the height to your images size...

Re: Site name not appearing in default template

Posted: Tue Dec 19, 2006 12:06 pm
by magiric
That's great  :D

Thanks for the fast response, much appreciated. I'll try it asap, but not while I'm at work  ;)