Page 1 of 1

[solved] No Header text ?

Posted: Tue Oct 09, 2007 11:00 pm
by Mury
Hi folks - just installed - all seems ok so far :)
Just notice that the top header has only the CMS Made Simple Image only on the green background - and no Site Name?

I cant seem to find where I change that - I guess its in the stylesheet?
Actually I want to remove the image totally and just use text ie use divs to lay out text.
I have found a forum post to do that -- just need some starters to find things :)
Any ideas
TIA - keep well

Re: No Header text ?

Posted: Wed Oct 10, 2007 2:32 am
by Dr.CSS
In a default install CSS, Layout: Left sidebar + 1 column, look for this...


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 */
}

Re: No Header text ?

Posted: Wed Oct 10, 2007 7:13 am
by Mury
Hi Mark, found it - thanks heaps.