I looked everywhere in the code and stylesheet and resized all fonts to try and find out where the Syndicate get's his formatting from but I cannot find it!

my site at the bottom shows a Syndicate as big as the titles!! horrible.. I need to resize it to be smaller. Problem?

in the page.tpl.php at the end I have

<div id="footer">      
  <?php if ($footer_message) : ?>
     <?php print $footer_message;?>
            <p><br>Powered by <a href="drupal.org">DRUPAL</a><br>
             Theme Designed by <a href="http://www.seoposition.com">SEO Position</a> and <a href="http://blamcast.net">Blamcast</a></p>
   <?php endif; ?>          
</div>		
<div id="footershim"></div> 

nothing between the footer message and the "powered by DRUPAL" (my addon). Yet it adds a huge SYNDICATE title and the syndicate logo. Where do they come from? They are not in the Stylesheet either.

#footer {
	background: url(footer2.png);
	clear: both;
	width: 934px;
	padding-top: 1em;
	margin: 12px 23px 0px;
	border-top: 1px solid #aaa;
	border-bottom: 1px solid #aaa;
	font-size: 0.7em;
	text-align: center;
}

#footershim {
	height: 10px;
	background: url(footer.png) repeat-y;
}

in fact if I resize the "font-size: 0.7em;" to something else in the #footer element, everything BUT the syndicate changes size!!

I must be losing my mind ;)

DJL

Comments

DJLahey’s picture

For now all I did was to remove $footer_message component

At least now it looks decent.