Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
 All Forums
 Community Forums
 Show-Off Your Forums
 WIP - Cgdesign new forum

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!
Before posting, make sure you have read this topic!

Screensize:
UserName:
Password:
Format Mode:
Format: BoldItalicizedUnderlineStrikethrough Align LeftCenteredAlign Right Horizontal Rule Insert HyperlinkInsert EmailInsert Image Insert CodeInsert QuoteInsert List
   
Message:

* HTML is OFF
* Forum Code is ON
Smilies
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Clown [:o)]
Black Eye [B)] Eight Ball [8] Frown [:(] Shy [8)]
Shocked [:0] Angry [:(!] Dead [xx(] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
   

T O P I C    R E V I E W
toth Posted - 10 July 2008 : 19:05:59
Hi guys,

This forum is still a work in progress, but I thought I would share it with you guys to see how you like it so far.

You will notice some pages still need to be edited.

http://www.guzzodesign.com/cgdesign/

Login for testing: login = test / pass = test

and a little screenshot



cheers <
15   L A T E S T    R E P L I E S    (Newest First)
toth Posted - 08 September 2008 : 18:35:08
Here's a screenshot from one I did a long time ago, but never finished it.



I have to check if I can upload it for a testdrive ;)<
toth Posted - 08 September 2008 : 17:55:19
Well, most stuff is edited. I ussaully start to design on top off all the code. Then I just pickout the code that I need and place it in my design.

Here's what I've done with the flat tree navigation in the forum.asp file


Response.Write	"<table width=""850"" height=""15"" cellPadding=""0"" cellSpacing=""0"" border=""0"" background=""images/interface/forum_header_blank.gif"">" & vbNewLine & _
		"	<tr>" & vbNewLine & _
		"		<td>" & vbNewLine & _
		"		</td>" & vbNewLine & _
		"	</tr>" & vbNewLine & _
		"</table>" & vbNewLine

Response.Write	"<table width=""850"" cellPadding=""0"" cellSpacing=""0"" border=""0"" background=""images/interface/forum_backloop.gif"">" & vbNewLine & _
		"	<tr>" & vbNewLine & _
		"		<td align=""left"" class=""font_black3""><div id=""topic_navigation"">" & vbNewLine & _
		"		<a href=""default.asp"">All Forums</a>" & vbNewLine & _
		" <img src=""images/interface/topicnav_arrow.gif"" align=""absmiddle"" border=""0""> " & vbNewLine & _
		"		<a href=""default.asp?CAT_ID=" & Cat_ID & """>" & ChkString(Cat_Name,"display") & "</a>" & vbNewLine & _
		" <img src=""images/interface/topicnav_arrow.gif"" align=""absmiddle"" border=""0""> " & vbNewLine & _
		"		<b><a href=""forum.asp?" & ArchiveLink & "FORUM_ID=" & Forum_ID & """>" & ChkString(Forum_Subject,"display") & "</a>" & vbNewLine & _
		"		</b></div></td>" & vbNewLine

Response.Write	"	</tr>" & vbNewLine & _
		"</table>" & vbNewLine

Response.Write	"<table width=""850"" height=""20"" cellPadding=""0"" cellSpacing=""0"" border=""0"" background=""images/interface/forum_footer.gif"">" & vbNewLine & _
		"	<tr>" & vbNewLine & _
		"		<td>" & vbNewLine & _
		"		</td>" & vbNewLine & _
		"	</tr>" & vbNewLine & _
		"</table>" & vbNewLine


So you become this:



The first and last table is for the rounded top and bottom. Also notice that I didn't included the 'New Topic', 'Reply to Topic', 'Send to a friend' and 'Printer Friendly' links. I used them somewhere else

And this is the edited code for the login form in inc_header.asp


Response.Write	"<form action=""" & Request.ServerVariables("URL") & """ method=""post"" id=""form1"" name=""form1"">" & vbNewLine & _
		"<input type=""hidden"" name=""Method_Type"" value=""login"">" & vbNewLine & _
		"		<td class=""font_black1"" align=""left"" width=""50%"">    Please Login or <a href=""register.asp"" tabindex=""-1""><b>Register</b></a> to use the board | " & vbNewLine & _
		"		<b><a href=""password.asp""" & dWStatus("Choose a new password if you have forgotten your current one...") & " tabindex=""-1"">Forgot your "
		if strAuthType = "nt" then Response.Write("Admin ")
		Response.Write	"Password?</a></b>" & vbNewLine & _
				
		"		</td>" & vbNewLine & _
		"		<td class=""font_black1"" align=""right"" width=""50%"">" & vbNewLine & _
		"			<table border=""0"" height=""40"" cellPadding=""0"" cellSpacing=""0"">" & vbNewLine & _
		"				<tr>" & vbNewLine & _
		"					<td class=""font_black1"">Login </td><td><input type=""text"" name=""Name"" size=""10"" maxLength=""25"" value="""" class=""form_login"">" & vbNewLine & _
		"					</td>" & vbNewLine & _
		"					<td class=""font_black1""> Password </td><td><input type=""password"" name=""Password"" size=""10"" maxLength=""25"" value="""" class=""form_login"">" & vbNewLine & _
		"					</td>" & vbNewLine & _
		"					<td class=""font_black1""> <input type=""checkbox"" name=""SavePassWord"" value=""true"" tabindex=""-1"" CHECKED align=""absmiddle""></td><td class=""font_black1""> Save " & vbNewLine & _
		"					</td>" & vbNewLine & _
		"					<td>" & vbNewLine
		if strGfxButtons = "1" then
		Response.Write	"                <input src=""" & strImageUrl & "interface/btn_login.gif"" type=""image"" border=""0"" value=""Login"" id=""submit1"" name=""Login"" align=""absmiddle"">" & vbNewLine
		else
		Response.Write	"                <input type=""submit"" value=""Login"" id=""submit1"" name=""submit1"">" & vbNewLine
		end if 
Response.Write	"					</td>" & vbNewLine & _
		"				</tr>" & vbNewLine & _
		"			</table>" & vbNewLine & _
		"		</td>" & vbNewLine & _
		"</form>" & vbNewLine


So it looks like this

<
Webbo Posted - 09 August 2008 : 19:32:24
How did you manage to get the 'Log in' code to sit on one line like that?

Please can you share it?

<
wii Posted - 29 July 2008 : 09:42:06
WOW, this is one of the best Snitz designs I´ve seen in a long time, well done.<
jimdz Posted - 29 July 2008 : 07:36:18
I'm looking to customize the design of a forum but don't have any idea where to start. Any help guiding me in the right direction would be appreciated. Thanks.<
wtb5 Posted - 17 July 2008 : 22:46:53
Nice look & feel. I'm in the process getting ideas by looking at several of the snitz-based sites. I've seen the flat "tree" navigation you are using on a couple of other sites, is it a published mod or code of your own design?

Thanks,

Walt<
Grandmaster Posted - 15 July 2008 : 15:23:58
I liked a lot. Very nice.<
SiSL Posted - 11 July 2008 : 18:45:44
quote:
Originally posted by MarkJH

It's great to see people still putting the time and effort in to make Snitz Forums look great. What font is that you're using?



Ofcourse we will, everyone will. Is there any more flexible code that you can do as you will?

Always viewed Snitz as skeleton, how to dress it up is up to yours :)
<
HuwR Posted - 11 July 2008 : 18:25:48
my appologies, I hadn't seen the line saying it wsn't all done , an excellent job though.<
toth Posted - 11 July 2008 : 17:14:18
Thanks, this is a personal project. A graphic design community I'm going to start.

I used Trebuchet MS font.

As I said before, not all pages are done yet, everything should fit in the layout when it's done ;)

<
MarkJH Posted - 11 July 2008 : 09:01:14
Oh, and is this for a personal project or part of a package?<
MarkJH Posted - 11 July 2008 : 09:00:00
quote:
you need to change the styling of active.asp as it does not fit with the rest of your design
Toth noted at the top that there were a bunch of pages not styled, yet.

That's looking magnificent! It's great to see people still putting the time and effort in to make Snitz Forums look great. What font is that you're using?<
SiSL Posted - 11 July 2008 : 07:12:43
Looks great, good work :)<
HuwR Posted - 11 July 2008 : 06:11:38
you need to change the styling of active.asp as it does not fit with the rest of your design, but other than that looks great<
mdelcour2000 Posted - 10 July 2008 : 20:08:14
looks and wqorks great with Opera though.<

Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.06 seconds. Powered By: Snitz Forums 2000 Version 3.4.07