MyBB Community Forums

Full Version: footer question?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Below is my current footer template. The last string of text says, "Powered by servage.net" That text is showing up black on my site, can I easily change it to white text? If so, how?




<br />
			<div class="bottommenu"><span class="smalltext"><a href="{$mybb->settings['contactlink']}">{$lang->bottomlinks_contactus}</a> | <a href="{$mybb->settings['homeurl']}">{$mybb->settings['homename']}</a> | <a href="#top">{$lang->bottomlinks_returntop}</a> | <a href="#content">{$lang->bottomlinks_returncontent}</a> | <a href="<archive_url>">{$lang->bottomlinks_litemode}</a> | 
<a href="http://houserepairforums.com/links/links.html">Links</a> |
<a href="{$mybb->settings['bburl']}/misc.php?action=syndication">{$lang->bottomlinks_syndication}</a></span>
			</div>
			</div>
		<hr class="hidden" />
			<div id="copyright">
				<div id="debug"><debugstuff></div>
				<!-- You may NOT remove, modify or hinder the visibility of the MyBB copyright at any time.
				     It must contain the links to the MyBB website and be formatted appropriately.

					 Failure to comply with the above will result in prosecution to the full extent of the law.
					 This is free software, support us and we'll support you. -->
{$lang->powered_by} <a href="http://www.mybboard.com" target="_blank">MyBB</a> {$mybbversion}<br />
				{$lang->copyright} &copy; 2002-{$copy_year} <strong><a href="http://www.mybboard.com" target="_blank">MyBB Group</a></strong><br>
<a href="http://www.servage.net/?coupon=cust28637">Powered by servage.net</a>
				<!-- End copyright -->
				<br />
<br class="clear" />
		</div>
		</div>
This line
<a href="http://www.servage.net/?coupon=cust28637">Powered by servage.net</a>
Change to:
<a href="http://www.servage.net/?coupon=cust28637"><span style="color: white">Powered by servage.net</span></a>
DennisTT Wrote:This line
<a href="http://www.servage.net/?coupon=cust28637">Powered by servage.net</a>
Change to:
<a href="http://www.servage.net/?coupon=cust28637"><span style="color: white">Powered by servage.net</span></a>

Thanks, DENNISTT