WIP - Cgdesign new forum

Snitz™ Forums 2000
https://forum.snitz.com/forumTopic/Posts/67440?pagenum=1
05 November 2025, 09:06

Topic


toth
WIP - Cgdesign new forum
10 July 2008, 19:05


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 cool<

 

Replies ...


radiodelicate
10 July 2008, 19:15


oh, that looks very nice! really smooth! there seems to be a problem in Firefox though. as you can see, the outer box doesn't seem to resize properly with the content, but stays a fixed height. [IMG]http://i33.tinypic.com/s4rrer.jpg[/IMG]<
mdelcour2000
10 July 2008, 20:08


looks and wqorks great with Opera though.<
HuwR
11 July 2008, 06:11


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<
SiSL
11 July 2008, 07:12


Looks great, good work :)<
MarkJH
11 July 2008, 09:00


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. smile What font is that you're using?<
MarkJH
11 July 2008, 09:01


Oh, and is this for a personal project or part of a package?<
toth
11 July 2008, 17:14


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 ;)

<
HuwR
11 July 2008, 18:25


my appologies, I hadn't seen the line saying it wsn't all done smile, an excellent job though.<
SiSL
11 July 2008, 18:45


Originally posted by MarkJH
It's great to see people still putting the time and effort in to make Snitz Forums look great. smile 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 :)
<
Grandmaster
15 July 2008, 15:23


I liked a lot. Very nice.<
wtb5
17 July 2008, 22:46


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<
jimdz
29 July 2008, 07:36


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.<
wii
29 July 2008, 09:42


WOW, this is one of the best Snitz designs I´ve seen in a long time, well done.<
Webbo
09 August 2008, 19:32


How did you manage to get the 'Log in' code to sit on one line like that?
Please can you share it?
<
toth
08 September 2008, 17:55


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

Code:

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

Code:

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

<
toth
08 September 2008, 18:35


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 ;)<
© 2000-2021 Snitz™ Communications