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

 All Forums
 Help Groups for Snitz Forums 2000 Users
 Help: MOD Implementation
 Header links
 New Topic  Topic Locked
 Printer Friendly
Next Page
Author Previous Topic Topic Next Topic
Page: of 2

guessme
Banned User

393 Posts

Posted - 25 November 2003 :  19:07:24  Show Profile  Visit guessme's Homepage
I made an image 'sort of' for my forums header. How do i get links into it?

RebelTech
Average Member

USA
613 Posts

Posted - 25 November 2003 :  23:57:38  Show Profile  Visit RebelTech's Homepage  Send RebelTech an ICQ Message
To add links into the inc_header.asp just look for the code section in the header starting with:
sub sForumNavigation()


and add a line something like this:
		Response.Write	"          <font color=""" & strHeadFontColor & """ face=""Verdana, Arial, Helvetica"" size=""2""><a href=""whatever.asp"" tabindex=""-1""><acronym title=""Whatever Link Info you want"">Whatever</acronym></a></font>" & vbNewline
	Response.Write "  |" & vbNewline


As for the image you mentioned, I am not sure what you mean. Are you saying that you're using an image map?

Edited by - RebelTech on 25 November 2003 23:58:52
Go to Top of Page

guessme
Banned User

393 Posts

Posted - 26 November 2003 :  06:12:06  Show Profile  Visit guessme's Homepage
I am not sure. I don't understand this. Lets say i used the site intergration mod and put up an image[picture]with it. All i would have is the image[picture]. The links would not be in it. I see some sites with the links in the image[picture].

Go to Top of Page

sam_i_am003
New Member

50 Posts

Posted - 26 November 2003 :  08:49:19  Show Profile
i was gonna do that too guessme. i don't see why it wouldn't work. all the header is is links right?
Go to Top of Page

RebelTech
Average Member

USA
613 Posts

Posted - 26 November 2003 :  09:25:41  Show Profile  Visit RebelTech's Homepage  Send RebelTech an ICQ Message
quote:
Originally posted by guessme

I am not sure. I don't understand this. Lets say i used the site intergration mod and put up an image[picture]with it. All i would have is the image[picture]. The links would not be in it. I see some sites with the links in the image[picture].



I will try to answer both guess' and sam's questions at the same time. But, I am not the best reference!

The inc_site_header.asp is used with the site integration mod and is empty to start with. It can contain anything you want. As for the header sam_i_am003, if your talking about the inc_header.asp that comes with Snitz then the answer is no, it is not just links. It contains login routines, starts the writing some of the html tags, forum navigation (links) etc...

guessme, I am still unsure of what you want to do. If your wanting to add an image and make that image a link to another url like this:


Then you would add something like this to your inc_site_header.asp:
response.write "<A HREF=""http://www.myweb.com""><IMG SRC=""test.gif""></A>" & vbnewline


If you're wanting to add an image map (an image/picture that has several different links depending on where you click in the image) then here
are some links to image map tutorials.

http://www.freewebmastertips.com/php/content.php3?aid=65

http://www.ihip.com/

I hope this helps. Feel free to ask any questions.
Go to Top of Page

D3mon
Senior Member

United Kingdom
1685 Posts

Posted - 26 November 2003 :  09:39:45  Show Profile  Visit D3mon's Homepage
Try this:
In inc_site_header.asp put this code:
<%
sForumNavigation()
%>


That should place a copy of the Snitz links in the top header of the S.I. Mod and should get you started.


Snitz 'Speedball' : Site Integration Mod : Friendly Registration Mod
"In war, the victorious strategist only seeks battle after the victory has been won"

Edited by - D3mon on 26 November 2003 09:39:56
Go to Top of Page

sam_i_am003
New Member

50 Posts

Posted - 26 November 2003 :  10:34:38  Show Profile
quote:
As for the header sam_i_am003, if your talking about the inc_header.asp that comes with Snitz then the answer is no, it is not just links. It contains login routines, starts the writing some of the html tags, forum navigation (links) etc...


Thanks for clarifying rebel.

quote:
That should place a copy of the Snitz links in the top header of the S.I. Mod and should get you started.


So placing this will add just the links? Will we get to align them where and how we want?
Go to Top of Page

RebelTech
Average Member

USA
613 Posts

Posted - 26 November 2003 :  11:00:46  Show Profile  Visit RebelTech's Homepage  Send RebelTech an ICQ Message
quote:
So placing this will add just the links? Will we get to align them where and how we want?


you will need to edit the code in the sub sForumNavigation() in the original Snitz inc_header.asp.
For example, if you wanted all the links to align vertically in a column you could replace all the
|
with
<br>
.

So it would look like

link1
link2
link3

instead of link1 | link2| link3
Go to Top of Page

guessme
Banned User

393 Posts

Posted - 26 November 2003 :  14:04:32  Show Profile  Visit guessme's Homepage
Check out this site. It has an image and links on it.

http://eetd.lbl.gov/

But i was thinking of buttons for the links on the image[picture].


Edited by - guessme on 26 November 2003 14:48:54
Go to Top of Page

D3mon
Senior Member

United Kingdom
1685 Posts

Posted - 26 November 2003 :  17:27:17  Show Profile  Visit D3mon's Homepage
That site uses an Image Map to define 'areas' of the image as links.


Snitz 'Speedball' : Site Integration Mod : Friendly Registration Mod
"In war, the victorious strategist only seeks battle after the victory has been won"
Go to Top of Page

guessme
Banned User

393 Posts

Posted - 26 November 2003 :  18:40:50  Show Profile  Visit guessme's Homepage
Is there another way?

Go to Top of Page

RebelTech
Average Member

USA
613 Posts

Posted - 26 November 2003 :  23:24:32  Show Profile  Visit RebelTech's Homepage  Send RebelTech an ICQ Message
quote:
Originally posted by guessme

Is there another way?



What exactly are you wanting to do? I am not following you.
Go to Top of Page

guessme
Banned User

393 Posts

Posted - 27 November 2003 :  00:32:38  Show Profile  Visit guessme's Homepage
http://www.crashsite.nl/default.asp


Edited by - guessme on 27 November 2003 00:34:11
Go to Top of Page

RebelTech
Average Member

USA
613 Posts

Posted - 27 November 2003 :  01:21:40  Show Profile  Visit RebelTech's Homepage  Send RebelTech an ICQ Message
I guess I am very dense, I am still not clear...

Crash's site is not using an image map or image links like you were asking for.

If you're talking about the slide out menus, try this link it might help:
http://forum.snitz.com/forum/topic.asp?TOPIC_ID=49349
Go to Top of Page

Shaggy
Support Moderator

Ireland
6780 Posts

Posted - 27 November 2003 :  04:47:26  Show Profile
Have you had a look at sForumNavigation(). Within it you will find the words that make up the menu (Register, Profile, etc.) Just replace these words with the images you want to use.


Search is your friend
“I was having a mildly paranoid day, mostly due to the
fact that the mad priest lady from over the river had
taken to nailing weasels to my front door again.”
Go to Top of Page

guessme
Banned User

393 Posts

Posted - 28 November 2003 :  02:20:34  Show Profile  Visit guessme's Homepage
Let me put it this way. If you could take the title image and make it go all the way across, from one end to the other. Like about 760x200 in size and have the links that are in the upper right of the snitz forums in that area.

Go to Top of Page
Page: of 2 Previous Topic Topic Next Topic  
Next Page
 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.34 seconds. Powered By: Snitz Forums 2000 Version 3.4.07