In trying to create a "sponsors" (credits) row across the bottom of the template, I've fiddled around but not come up with successful results.
my layout.css looks like this:
#sponsors {
height: 46px;
width: 877px;
}
a.divlink, a.divlink:link, a.divlink:visited
color:#222222;
display:block;
font-size:0px;
height:100%;
line-height:0px;
width:100%;
}
my index.php looks like this:
<div id="footer"> My site's Copyright &#169; 2002-2007. All Rights Are Reserved.<?php mosLoadModules ( 'bottom' ); ?></div>
<div id="sponsors">
<a href="
www.sponsor1.com" class="divlink"><img src="images/sponsor1.gif" alt="sponsor1" /></a>
<a href="
www.sponsor2.com" class="divlink"><img src="images/sponsor2.gif" alt="sponsor2" /></a>
<a href="
www.joomla.org" class="divlink"><img src="images/Joomla Logo.png" alt="Joomla.org" /></a>
<a href="
www.joomlabear.com" class="divlink"><img src="images/website-design-by-
joomlabear.png" alt="JoomlaBear" /></a>
</div>
</div>
</body>
</html>
But this is not working.
Instead of 4 equally spaced icons across the bottom where Joomlabear's icon currently is.. I just get four little boxes drawn around the text as links all squished up against the left side.