Hello

Is there a way to remove the site name at top of a Drupal site?

Thanks

Comments

ThatPerson’s picture

Turn off "site name" under "Toggle display". You're done!

If it still doesn't work, you may need to go into your specific theme by clicking on its item in the configure page and toggle it there.

snmstudio’s picture

Okay, I tried many things, including the one above, but it removed my whole header picture!

BUT, I was so happy to finally have the solution to this, that I had to register and let you guys know, lol...

What I did was add to the code in default.css (/themes/your_theme/default.css)...

/* header */
.header {
	float: left;
	width: 640px;
	background: url(img/header.jpg) no-repeat;
	font: normal 2.4em Verdana,sans-serif;
	line-height: 150px;
	text-align: center;	
	letter-spacing: -3px;
}
.header a, .header a:hover {
	text-decoration: none;
	color: #333;
	visibility:hidden;    <-----I JUST ADDED THIS LINE!!!
}

Hope this works for you guys!=)