Since I go a banner with the headline Topic is solved

General project discussion. NOT for help questions.
Post Reply
raifo77

Since I go a banner with the headline

Post by raifo77 »

Regards

Not authority very well English(groin) They forgive me..
My question is since I do to go a banner or photo with the straight side of the headline where this the logo of the cmsms.
Which is the file where these changes are done

Thank you
User avatar
Dr.CSS
Moderator
Moderator
Posts: 12711
Joined: Thu Mar 09, 2006 5:32 am

Re: Since I go a banner with the headline

Post by Dr.CSS »

In all default installs it's the "header h1 a" that gets the image, you will need to adjust the sizes to your image.

For older than 1.0 default install it's in the Layout CSS...

        div#header h1 a {
            background:  url(uploads/images/logo1.gif) no-repeat 0 12px;
            display: block;
            height: 80px;
            text-indent: -700em;
            width: 198px;
            margin: 0;
            padding: 0;
        }

in 1.0+ it is in the, depending which template, Layout: Left sidebar + 1 column CSS...

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

Return to “General Discussion”