changing logo

For discussion and questions related to CMS Specific templates and stylesheets (CSS), and themes. or layout issues. This is not a place for generic "I don't know CSS issues"
Post Reply
User avatar
frankmanl
Power Poster
Power Poster
Posts: 425
Joined: Sat Jul 12, 2008 3:50 am

Re: changing logo

Post by frankmanl »

new logo does not appear:
1) Refresh your browser. On a pc that would mean: push F5.
2) Clear your browser's cache/history.
3) Give your new logo another name and change that also in de layout stylesheet

new logo has a different name/size:
Have a look at the layout stylesheet you use. You should find something like

Code: Select all

div#header h1 a {
/* you can set your own image here */
	background: url([[root_url]]/uploads/ngrey/logoCMS.png) no-repeat left top;
/* this will make the "a" link a solid shape */
	display: block;
/* adjust according your image size */
	height: 100px;
/* this hides the text */
	text-indent: -999em;
/* old firefox would have shown underline for the link, this explicitly hides it */
	text-decoration: none;
}
div#header h1 {
	margin: 0;
	padding: 0;
/*these keep IE6 from pushing the header to more than the set size*/
	line-height: 0;
	font-size: 0;
/* this will keep IE6 from flickering on hover */
	background: url([[root_url]]/uploads/ngrey/logoCMS.png) no-repeat left top;
}
Adjust as propriate.

Frank
Post Reply

Return to “Layout and Design (CSS & HTML)”