|
|
|
|
![]() ![]() |
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: [HOSTED]
Posts: 304 Joined: 30-August 08 From: United Kingdom Member No.: 67,096 myCENT:92.70 |
Post
#1
Sep 8 2008, 03:55 PM
Hey Trap17 Users! I'd like to get some help from experienced Trap members, to help me get my homepage of Central-Gaming design page up. If possible, I'd like to have the following used:
Some themes of banners/images etc, anything game related, and that would do nicely on the homepage. I'd also like a left navigation bar (nav bar) with the "Trap17 Network links", then a nav menu "Central-Gaming" "Forums" "Homepage" "Arcade" "Store" etc etc. If ANYONE on here can help me, I'd be really really happy and would be appreciated. Thanks |
![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: [HOSTED]
Posts: 115 Joined: 7-September 08 From: West New York Member No.: 67,492 myCENT:8.96 |
Post
#2
Sep 9 2008, 12:55 AM
Well, if you're going to be having a lot of pages on your site you might want some php so that you don't have to retype your left menu on every page you go to. Course this will work for any html that you plan to repeat on almost every page. menu.txt: CODE <link href="stylesheet.css" rel="stylesheet" type="text/css"> </head> <body> <div id="menu"> -actual menu- </div> Your actual .php page would then look something like... page.php: CODE <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>A page</title> <?php include('top.txt'); ?> <p>This is some content on the page.</p> </body> </html> I hope that helps! This post has been edited by Deretto: Sep 9 2008, 12:55 AM |
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
Post
#3
Sep 9 2008, 07:19 AM
If you are having a forums. Consider integrating your website into whatever forum software you are choosing (i.e. in Other words, have your homepage as a portal for whatever forum software you are going to use (which I highly recomment phpBB3.x.x)) Integrating your site with your forum would mean you can share sessions (i.e. You can have logins, and you can register etc without having to enter the forum's register/login etc) Or consider using a CMS software (i.e. I personally recommend Joomla! For this though I still prefer no CMS...) With the Navigation bar, use a CSS navigation bar creator to first get the code and then if you want, modify it to fit your website... What are you aiming for your homepage? Full integration with your forum software (Which you should go with a portal), partially integrated (Which you should make your own, i.e. For phpBB3.x.x all you need to do is put a few lines of code and you can use its templating system, language system, etc), or if you want it separate but with logins (Which I recommend you use a CMS, though CMS such as Joomla! can be integrated with phpBB3.x.x), or if you just want the PHP to be as simple as possible and only use the INCLUDE, REQUIRE (which I recommend over INCLUDE) tags... Try to aim high up and don't start small as the best way to learn is to "learn-as-you-go" and not learn a bit, use it, learn more use it... Also, to get more users use less graphics and focus on the content at the start. And only use graphics when necessary so you can keep the dialup users returning. Also make sure that all your code gets validated before its gets uploaded. Try not to directly edit things from cPanel's filemanager. Get Apache (or something) and do some localhost (127.0.0.1) testing before you upload with multiple browsers (including IE6) just to make sure it displays properly so that nobody would get missing info. |
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: [HOSTED]
Posts: 304 Joined: 30-August 08 From: United Kingdom Member No.: 67,096 myCENT:92.70 |
Post
#4
Sep 9 2008, 09:16 AM
QUOTE(Deretto @ Sep 9 2008, 01:55 AM) [snapback]407021[/snapback] Well, if you're going to be having a lot of pages on your site you might want some php so that you don't have to retype your left menu on every page you go to. Course this will work for any html that you plan to repeat on almost every page. menu.txt: CODE <link href="stylesheet.css" rel="stylesheet" type="text/css"> </head> <body> <div id="menu"> -actual menu- </div> Your actual .php page would then look something like... page.php: CODE <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>A page</title> <?php include('top.txt'); ?> <p>This is some content on the page.</p> </body> </html> I hope that helps! Thanks Deretto, but could you possibly create me a PHP page and the menu? I'd rubbish with PHP, and HTML really. I just know a small amount of HTML. QUOTE(csp4.0 @ Sep 9 2008, 08:19 AM) [snapback]407060[/snapback] If you are having a forums. Consider integrating your website into whatever forum software you are choosing (i.e. in Other words, have your homepage as a portal for whatever forum software you are going to use (which I highly recomment phpBB3.x.x)) Integrating your site with your forum would mean you can share sessions (i.e. You can have logins, and you can register etc without having to enter the forum's register/login etc) Or consider using a CMS software (i.e. I personally recommend Joomla! For this though I still prefer no CMS...) With the Navigation bar, use a CSS navigation bar creator to first get the code and then if you want, modify it to fit your website... What are you aiming for your homepage? Full integration with your forum software (Which you should go with a portal), partially integrated (Which you should make your own, i.e. For phpBB3.x.x all you need to do is put a few lines of code and you can use its templating system, language system, etc), or if you want it separate but with logins (Which I recommend you use a CMS, though CMS such as Joomla! can be integrated with phpBB3.x.x), or if you just want the PHP to be as simple as possible and only use the INCLUDE, REQUIRE (which I recommend over INCLUDE) tags... Try to aim high up and don't start small as the best way to learn is to "learn-as-you-go" and not learn a bit, use it, learn more use it... Also, to get more users use less graphics and focus on the content at the start. And only use graphics when necessary so you can keep the dialup users returning. Also make sure that all your code gets validated before its gets uploaded. Try not to directly edit things from cPanel's filemanager. Get Apache (or something) and do some localhost (127.0.0.1) testing before you upload with multiple browsers (including IE6) just to make sure it displays properly so that nobody would get missing info. I don't really like CMS, phpbb or any of them. I tried installing Joomla, but it said it needs mysql. I put mysql and it didn't connect, so it won't allow it on localhost. Any suggestions? |
![]() Group: Members
Posts: 8 Joined: 12-November 08 Member No.: 72,052 |
Post
#5
Nov 12 2008, 12:32 AM
Sky I hope this website is a big help to ya.. I've been learning alot from this site.. from htlp. dhtml, to Macromedia Flash, to even little bits of PHP. Here's the website: http://www.w3schools.com Hope helps you alot! I wish you luck Sky! |
![]() Group: Members
Posts: 15 Joined: 24-October 08 Member No.: 70,550 |
Post
#6
Nov 15 2008, 10:59 AM
hello i think a Joomla installed with a Games Templates which you can find here : http://templates4all.blogspot.com/search/l...s?max-results=6 is enough to make a Good Gaming Website with all what you listed and you want to make to this Website, plus you economize time. |
![]() ![]() |
Similar Topics
| Topic Title | Replies | Topic Starter | Views | Last Action | |||
|---|---|---|---|---|---|---|---|
![]() |
22 | Roly | 1,637 | 5th January 2009 - 08:49 PM Last post by: Ousk |
|||
![]() |
18 | shadowx | 831 | 29th December 2008 - 09:34 AM Last post by: africa |
|||
![]() |
3 | skter4938 | 472 | 22nd June 2006 - 03:10 PM Last post by: fffanatics |
|||
![]() |
11 | Mr Self Destruct | 1,338 | 26th September 2004 - 04:37 AM Last post by: Mr Self Destruct |
|||
![]() |
13 | Saint_Michael | 1,680 | 3rd January 2009 - 07:50 AM Last post by: DarkNova |
|||
![]() |
7 | googlue | 612 | 15th October 2004 - 05:09 AM Last post by: googlue |
|||
![]() |
226 | nicky1 | 8,613 | 2nd June 2008 - 11:38 PM Last post by: al-amakine |
|||
![]() |
9 | -Omenessence- | 501 | 7th November 2004 - 10:07 AM Last post by: Becca |
|||
![]() |
6 | skter4938 | 387 | 25th June 2006 - 10:36 AM Last post by: Avalon |
|||
![]() |
1 | clouds421 | 395 | 9th November 2004 - 04:28 PM Last post by: Becca |
|||
![]() |
1 | karlo | 320 | 9th November 2004 - 06:14 AM Last post by: boyCradle |
|||
![]() |
5 | hatebreed | 417 | 14th November 2004 - 12:00 AM Last post by: hatebreed |
|||
![]() |
6 | dontmaimyourself | 483 | 18th November 2004 - 11:18 AM Last post by: --Stealth-- |
|||
![]() |
15 | Mario | 1,008 | 2nd April 2005 - 03:01 PM Last post by: Mario |
|||
![]() |
7 | Damen | 660 | 7th October 2007 - 06:58 PM Last post by: Damen |
|||
|
Open Discussion | Time is now: 8th January 2009 - 07:27 AM |