Author |
Topic |
toth
Starting Member
Belgium
13 Posts |
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 < |
|
radiodelicate
New Member
Sweden
53 Posts |
Posted - 10 July 2008 : 19:15:04
|
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. < |
|
|
mdelcour2000
Junior Member
United States
133 Posts |
Posted - 10 July 2008 : 20:08:14
|
looks and wqorks great with Opera though.< |
http://lacledeforum.com/
"Never get so busy doing the work of the kingdom that you forget who the King is" |
|
|
HuwR
Forum Admin
United Kingdom
20584 Posts |
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< |
|
|
SiSL
Average Member
Turkey
671 Posts |
|
MarkJH
Senior Member
United Kingdom
1722 Posts |
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?< |
Bandlink.net - http://www.bandlink.net/ Bandlink Music Forums - http://www.bandlink.net/forum/ |
|
|
MarkJH
Senior Member
United Kingdom
1722 Posts |
|
toth
Starting Member
Belgium
13 Posts |
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 ;)
< |
|
|
HuwR
Forum Admin
United Kingdom
20584 Posts |
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.< |
|
|
SiSL
Average Member
Turkey
671 Posts |
|
Grandmaster
Starting Member
Brazil
46 Posts |
|
wtb5
Starting Member
United States
6 Posts |
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< |
Edited by - wtb5 on 17 July 2008 23:01:11 |
|
|
jimdz
Starting Member
1 Posts |
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.< |
|
|
wii
Free ASP Hosts Moderator
Denmark
2632 Posts |
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.< |
|
|
Webbo
Average Member
United Kingdom
982 Posts |
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? < |
|
|
toth
Starting Member
Belgium
13 Posts |
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
< |
Edited by - toth on 08 September 2008 17:56:19 |
|
|
Topic |
|