How can I link my logo YOFlogo.jpeg to become interactive.
Yeppers, go to your forum root folder and find the file named default.aspx. Open that bad boy in some sort of text editor. Just under the tag, look at the line that begins with
![]()
. You want to wrap that image in a hyperlink reference. It will look
something like this:
<a href="http://www.YOUR_SERVER_URL_HERE.com>
<img src="images/YAFLogo.jpg" runat="server" id="imgBanner" alt="" />
</a>
Now when someone clicks your logo, it will take them to your web root. Assuming that's the YAF forum, you should get the result you want.