Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Not Solved Add Do-follow backlinks on all my pages
#1
Not Solved
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.
#2
Not Solved
Just add the HTML code to the footer template.

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

How come my text doesn't appear black?
#4
Not Solved
(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>
Thanks,
Matt
[Image: signaturelike.png]
#5
Not Solved
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;
}


Forum Jump:


Users browsing this thread: 1 Guest(s)