First off I love theme, thanks a lot. I just have one question. Is it possible to remove the white bar that the slogan is in?

My website is http://www.commutex.com

Comments

VM’s picture

goto administer -> themes
configure the theme not to show the slogan by using the appropriate checkboxes

nugz’s picture

That was the first thing I did. All that does is remove the text from the slogan box. I want the entire box to go away.

VM’s picture

odd. check page.tpl.php and comment out the line of code where slogan is called ?

nugz’s picture

That has the same effect, it just gets rid of the text. I'm totally lost here...

VM’s picture

are you sure this isn't a caching issue ?

the only other thing I can think to do is fire up the firefox browser with the firebug add on and begin to check the .css being called in that area.

JohnForsythe’s picture

In page.tpl.php delete these lines:

    <div id="title">
      <?php if ($site_name) { ?><h1><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1><?php } ?>
      <?php if ($site_slogan) { ?><div class='site-slogan'><?php print $site_slogan ?></div><?php } ?>
      <div id="title-spacer"></div>
    </div>

Next, you will need to edit style.css. Find the #nav section (line 131 in the current release), and change it to this:

#nav {
  height: 25px;
  width: 715px;
  clear: both;
  font-size: 10px;
  margin-top: 175px;
}
JohnForsythe’s picture

Status: Active » Closed (fixed)
nugz’s picture

Thank you so much...Worked perfect.

JohnForsythe’s picture

Status: Closed (fixed) » Fixed
Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.