WIP - Cgdesign new forum - Posted (2857 Views)
Starting Member
toth
Posts: 13
13
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<
 Sort direction, for dates DESC means newest first  
 Page size 
Posted
Starting Member
wtb5
Posts: 6
6
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<
Posted
Starting Member
jimdz
Posts: 1
1
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.<
Posted
Free ASP Hosts Moderator
wii
Posts: 2632
2632
WOW, this is one of the best Snitz designs I´ve seen in a long time, well done.<
Posted
Average Member
Webbo
Posts: 982
982
How did you manage to get the 'Log in' code to sit on one line like that?
Please can you share it?
<
Posted
Starting Member
toth
Posts: 13
13
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

<
Posted
Starting Member
toth
Posts: 13
13
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 ;)<
You Must enter a message