Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Snitz Forums 2000 MOD-Group
 MOD Add-On Forum (W/O Code)
 Adding a link banner at the top of the forum
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

dragcom
Starting Member

25 Posts

Posted - 31 August 2003 :  08:50:24  Show Profile
I would like to add a link banner to my forum. I have been searching for a solution to allow me to do this with but have not been successful as of yet. Can somebody point me in the right direction?

Roland
Advanced Member

Netherlands
9335 Posts

Posted - 31 August 2003 :  09:40:16  Show Profile
where would you want the banner to show? Between the logo & navigation and the forums?
Go to Top of Page

dragcom
Starting Member

25 Posts

Posted - 31 August 2003 :  10:59:01  Show Profile
Actually I am looking for something to allow me to place a banner at the top of the forum.
Go to Top of Page

cioto
New Member

Italy
95 Posts

Posted - 01 September 2003 :  07:23:04  Show Profile  Visit cioto's Homepage
The same question for me!
I'd like to have a link with the logo of the forum. Where can I set it?
For example, in the upper left corner of this forum you can read "snitz forums...".
Ok, i want to set the url for the picture on my forum. How?
Thanks!
Go to Top of Page

dragcom
Starting Member

25 Posts

Posted - 01 September 2003 :  08:00:50  Show Profile
Let me explain this a little better so someone will understand what I am looking for and help me out.

I had to reload my Snitz forum a while back. I accidently deleted my backup files and lost the codes I was using. At the time I had a script in the forum that allowed me to add a banner in the header (top) and footer (bottom) of the forum.

I have tried to relocate the code again but cannot find it. I think the post containing the link and info on this MOD was deleted. I really need to get a link banner up for another website that is linked to my forum and helping to generate alot of traffic.

Can somebody please help???????
Go to Top of Page

Roland
Advanced Member

Netherlands
9335 Posts

Posted - 01 September 2003 :  08:49:50  Show Profile
just look at inc_header.asp where the second body tag is (it has an anchor link near it) and add the necessary banner codes. That way it'll show at the very top of your forum pages.
Go to Top of Page

cioto
New Member

Italy
95 Posts

Posted - 01 September 2003 :  09:32:33  Show Profile  Visit cioto's Homepage
I found a body tag and after few lines the closing /body tag.
Than, after many "pages", I found another body opening tag, without the closing /body.
But I found no anchor. Where to put the link?
Thanks again
Go to Top of Page

Roland
Advanced Member

Netherlands
9335 Posts

Posted - 01 September 2003 :  09:59:32  Show Profile
inc_header.asp lines 280 - 284 should look like this:
		"<body" & strTmpPageBGImageURL & " bgColor=""" & strPageBGColor & """ text=""" & strDefaultFontColor & """ link=""" & strLinkColor & """ aLink=""" & strActiveLinkColor & """ vLink=""" & strVisitedLinkColor & """>" & vbNewLine & _
		"<a name=""top""></a><font face=""" & strDefaultFontFace & """>" & vbNewLine & _
		vbNewLine & _
		"<table align=""center"" border=""0"" cellPadding=""0"" cellSpacing=""0"" width=""100%"">" & vbNewLine & _
		"  <tr>" & vbNewLine & _


Change it to look like this by adding the codes in red:
		"<body" & strTmpPageBGImageURL & " bgColor=""" & strPageBGColor & """ text=""" & strDefaultFontColor & """ link=""" & strLinkColor & """ aLink=""" & strActiveLinkColor & """ vLink=""" & strVisitedLinkColor & """>" & vbNewLine & _
		"<a name=""top""></a><font face=""" & strDefaultFontFace & """>" & vbNewLine & _
		vbNewLine & _
		"<table align=""center"" border=""0"" cellPadding=""0"" cellSpacing=""0"" width=""100%"">" & vbNewLine & _
		"  <tr>" & vbNewLine & _
		"    <td>XXX" & vbNewLine & _
		"    </td>" & vbNewLine & _
		"  </tr>" & vbNewLine & _
		"</table><br />" & vbNewLine & _
		"<br />" & vbNewLine & _
		"<table align=""center"" border=""0"" cellPadding=""0"" cellSpacing=""0"" width=""100%"">" & vbNewLine & _
		"  <tr>" & vbNewLine & _

Then simply put the code for your banner in the spot where I put the green XXX.
Go to Top of Page

Mr Pink
Junior Member

United Kingdom
387 Posts

Posted - 01 September 2003 :  17:47:50  Show Profile  Visit Mr Pink's Homepage  Send Mr Pink an AOL message
quote:
Originally posted by dragcom

At the time I had a script in the forum that allowed me to add a banner in the header (top) and footer (bottom) of the forum.




If I'm reading this correctly, you are looking for the site integration mod...
Try this
http://forum.snitz.com/forum/topic.asp?TOPIC_ID=33757&SearchTerms= site integration

Martin
Leyland Forum Leyland Lancashire UK
Go to Top of Page

dragcom
Starting Member

25 Posts

Posted - 01 September 2003 :  20:37:26  Show Profile
That's the one I needed. Thanks Martin!!
Go to Top of Page

cioto
New Member

Italy
95 Posts

Posted - 03 September 2003 :  07:27:44  Show Profile  Visit cioto's Homepage
For FrutZle:
is the following code ok?

"<table align=""center"" border=""0"" cellPadding=""0"" cellSpacing=""0"" width=""100%"">" & vbNewLine & _
" <tr>" & vbNewLine & _
" <td> <A HREF="http://www.acusticanapoili.com/_blank" TARGET="_blank"><IMG SRC="../sponsor.jpg" WIDTH="110" HEIGHT="70"></A> " & vbNewLine & _
" </td>" & vbNewLine & _
" </tr>" & vbNewLine & _
"</table><br />" & vbNewLine & _
"<br />" & vbNewLine & _

I put the link and the image in place of the XXX you put, but id doesn't work, the server gives me an error
Thanks for the help
Go to Top of Page

OneWayMule
Dev. Team Member & Support Moderator

Austria
4969 Posts

Posted - 03 September 2003 :  07:39:25  Show Profile  Visit OneWayMule's Homepage  Send OneWayMule an ICQ Message
Use the following code:
"<table align=""center"" border=""0"" cellPadding=""0"" cellSpacing=""0"" width=""100%"">" & vbNewLine & _
" <tr>" & vbNewLine & _
" <td> <A HREF=""http://www.acusticanapoili.com/_blank"" TARGET=""_blank""><IMG SRC=""../sponsor.jpg"" WIDTH=""110"" HEIGHT=""70""></A> " & vbNewLine & _
" </td>" & vbNewLine & _
" </tr>" & vbNewLine & _
"</table><br />" & vbNewLine & _
"<br />" & vbNewLine & _

(2 double quotes are needed in a Response.Write statement, I've marked the missing double quotes red.)

My MODs:
Birthdays - Custom Policy - F.A.Q. Administration - Forum Rules - Guestbook
Links Manager - MyOwnGoogle - Profile Views - Search Log - WebSearch

Useful stuff:
Forum and MOD Installation - MOD Installation Guide - Snitz v3.4.05 Readme - Free ASP Hosts - Support Snitz
Go to Top of Page

cioto
New Member

Italy
95 Posts

Posted - 03 September 2003 :  09:19:25  Show Profile  Visit cioto's Homepage
Thanks! I'll try that immediately.
Go to Top of Page

cioto
New Member

Italy
95 Posts

Posted - 03 September 2003 :  09:24:11  Show Profile  Visit cioto's Homepage
P E R F E C T!!
It works!!
Really thanks a lot to all of you!! You have been really kind.
Thanks!
Go to Top of Page

Roland
Advanced Member

Netherlands
9335 Posts

Posted - 03 September 2003 :  10:56:34  Show Profile
glad you got it working :)
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.36 seconds. Powered By: Snitz Forums 2000 Version 3.4.07