This is a guide on how to
REMOVE the "march 2009 design" slogan, located underneath the logo.
If you would like to change the slogan to your own, please follow this guide here:
www.rockettheme.com/forum/index.php?f=18..._v=viewtopic#p290040
1. In your joomla administrator go to
> Extensions > Template Manager > select Meridian and click "EDIT CSS"
open template.css and find (line 57)
.logo-desc {
bottom:0;
font-size:13px;
font-style:italic;
left:48px;
position:absolute;
text-decoration:none;
text-transform:lowercase;
width:100%;
}
and change to
.logo-desc {
bottom:0;
font-size:13px;
font-style:italic;
left:48px;
position:absolute;
text-decoration:none;
text-transform:lowercase;
width:100%;
display: none;
}
2. Another way of removing the slogan, would be to apply the following changes to your template's index.php file, at approximately line 106:
find:
<a href="<?php echo $this->baseurl; ?>" id="logo"><span class="logo-desc"><?php echo JText::_('SLOGAN'); ?></span></a>
and change to
<a href="<?php echo $this->baseurl; ?>" id="logo"></a>
That should remove the entire logo-desc span and text from the logo area.
Thanks Kevin!