<em>@izpub 228455 wrote:</em><blockquote>I don’t want to have a text or image logo at the top of the page, so I went to the template manager, set the logo type to “Text”, and left the Logo text and slogan empty.
Now, the website name appears in the top menu, before “About us”.
How do I disable the image/text logo?</blockquote>
You open the template.css file and find the following code:
h1.logo a {
background: url(../images/logo.png) no-repeat left;
display: block;
height: 185px;
width: 100px;
}
and replace by:
h1.logo a {
background:none!important;
display: block;
height: 185px;
width: 100px;
}