MyBB Community Forums

Full Version: Add Do-follow backlinks on all my pages
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I just did a link exchange with someone, how do I add there url to the bottom of every page on my forum?

I prefer to do this without a plugin because I have a bad experience with plugins, they have too many errors with them.
Just add the HTML code to the footer template.

<a href="http://somesite.com/" target="_blank">Somesite</a>
<FONT COLOR="000000"><a href="http://somesite.com/" target="_blank">Somesite</a></FONT>

How come my text doesn't appear black?
(2010-11-28, 08:29 PM)macdonjo Wrote: [ -> ]
<FONT COLOR="000000"><a href="http://somesite.com/" target="_blank">Somesite</a></FONT>

How come my text doesn't appear black?

try doing a css property in your css file of your theme instead, ie your global.css

Css File
.black_text {
color: #000000;
}

then
<div class=black_text>
<a href="yoursite.com" target="_blank">Somesite</a></div>


or you can do it in a style tag
<style type=text/css>
.black_text {
color: #000000;
}</style>
<div class=black_text>
<a href="yoursite.com" target="_blank">Somesite</a></div>
That's still not going to work because it's a link, it needs to be:
.black_text a:link, .black_text a:visited {
color: #000000;
}