Hi,
I am currently working on my first Drupal site ever and I would like to use the Nonzero theme. If you look at this scheme, you notice the "Site name" appears as "site name" - all in lowercase... I tried to look it up in the code but I don't know what is to be changed...:-( is it anything here? -I don't know php...

<div id="header">
	<div id="header_inner" class="fluid">
		<div id="logo">
		  <?php if ($logo) : ?>
			<span><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><img src="<?php print($logo) ?>" alt="<?php print t('Home') ?>" border="0" /></a></span>
		  <?php endif; ?>
		  <?php if ($site_name) : ?>
			<h1><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print($site_name) ?></a></h1>
		  <?php endif;?>
		  <?php if ($site_slogan) : ?>
			<h2><?php print($site_slogan) ?></h2>
		  <?php endif;?>
		</div>
		<div id="menu">			
			<?php print theme('links', $primary_links); ?>
		</div>
	</div>
</div>

The second thing which bothers me - is there a way how to let the menu which is originally on the right side appear on the left?

Thanks very much for your answers.

Comments

Christefano-oldaccount’s picture

That's probably in your style.css file. Look for something like this:

#sitename {
  text-transform:lowercase;
}

... and remove the CSS transform effect.