Page 1 of 1

Removing the CMSMS icon and text in the upper left corner?

Posted: Mon Jan 07, 2013 7:50 am
by LeifErikIngvar
Where do I edit this?
I want to replace with my own logo.

Glad for answers, it's hard to find this..

Best regards,
Leif.

Re: Removing the CMSMS icon and text in the upper left corne

Posted: Mon Jan 07, 2013 9:26 pm
by magallo
Where? in the frontend or admin area?

Re: Removing the CMSMS icon and text in the upper left corne

Posted: Tue Jan 08, 2013 12:16 am
by SpringSummer
LeifErikIngvar wrote:Where do I edit this?
I want to replace with my own logo.

Glad for answers, it's hard to find this..

Best regards,
Leif.
In the main CSS file associated with your template. It's an image.

Re: Removing the CMSMS icon and text in the upper left corne

Posted: Wed Jan 09, 2013 9:59 am
by LeifErikIngvar
SpringSummer wrote:
LeifErikIngvar wrote:Where do I edit this?
I want to replace with my own logo.

Glad for answers, it's hard to find this..

Best regards,
Leif.
In the main CSS file associated with your template. It's an image.
I still don't find it...

Re: Removing the CMSMS icon and text in the upper left corne

Posted: Wed Jan 09, 2013 8:34 pm
by paulbaker
Maybe post your template and CSS?

Re: Removing the CMSMS icon and text in the upper left corne

Posted: Thu Jan 10, 2013 1:50 am
by SpringSummer
CSS: Layout: Left sidebar + 1 column:

Code: Select all

   background: #385C72 url([[root_url]]/uploads/images/sitelogo.gif) no-repeat 0 12px; 
or for old templates:

Code: Select all

   background: #385C72 url(/uploads/images/sitelogo.gif) no-repeat 0 12px;

Re: Removing the CMSMS icon and text in the upper left corne

Posted: Thu Jan 31, 2013 5:51 pm
by Dr.CSS
If you are using one of the default templates they have a lot of comments in them to point you to the style sheet that controls the look of that part...

{* Start Header, with logo image that links to the default start page. Logo image is changed in the stylesheet "Layout: Top menu + 2 columns" *}
<div id="header">

{* this holds the name of the site on the right side *}
<h2 class="headright">{sitename}</h2>

{* a link back to home page and the header left image/logo, text is hidden using CSS *}
<h1>{cms_selflink dir="start" text="$sitename"}</h1>
<hr class="accessibility" />
</div>
{* End Header *}