Page 1 of 1
Since I go a banner with the headline
Posted: Sat Sep 30, 2006 11:14 pm
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
Re: Since I go a banner with the headline
Posted: Sun Oct 01, 2006 5:08 am
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 */
}