Jump to content

legohead6

Members
  • Posts

    434
  • Joined

  • Last visited

    Never

Everything posted by legohead6

  1. put it all together and make a good website! its rewarding and i find it fun!
  2. fix anonymous ftp, didnt even realize that, hmm, ill try to find a color to replace the yellow..
  3. i think i have fixed all the things you mentioned ardy, i am going to get someone to go through the site and list all the spelling errors and/or punctuation, some of the pages i havent changed since i typed up the original code and wasnt at that time planning on it being a public site. I am also going to hunt down a new font as well
  4. ok, i changed the colors, except the logo hasnt been changed yet, but how do you like the changed more "mild" colors? i will look inot those things you mentioned ardy..
  5. its a cool idea, but is it really that usefull?
  6. hmm, ok, ill change the colors, need to find a good combo first, what else is so bad? like the layout of the pages?
  7. ok, i have a page which dpeneding on what the user does can be very long or very short, currecntly i have my height set at 800px, but when i do something to make the page long the content goes off, how do i set a mnimum hieght so if its short the page doesnt look stubby, but if its long then it take what it needs.
  8. yes the help topics page isnt quite done. hmm, ill load up firefox and see., ok i think i fixed the firefox issue, what colors need changing, or what color combo would you recommend. I am going to change the font too.
  9. ok, i think im nearly done the refit. what do people think?
  10. how do i do this, if i minimize the right collum either follows or if i use pixels it looks messed on other screens heres the code, i want "google" to stay 10 px inside the container to the right(sorta like nav on the left <style> body { background-color: #FFFFCC; scrollbar-arrow-color: #FFFFCC; scrollbar-base-color: #0080ff; scrollbar-dark-shadow-color: #FFFFCC; scrollbar-track-color: #0080ff; scrollbar-face-color: #32Cd32; scrollbar-shadow-color: #32Cd32; scrollbar-highlight-color: #FFFFCC; scrollbar-3d-light-color: #0080ff; } #container { margin: auto; text-align: center; background-color: #0080FF; border: 4px #FFFFCC solid; z-index: 1 } #header { position: relative; top: 10px; width: 600px; z-index: 2; } #nav { position: absolute; top: 200px; left: 20px; padding:0px; border: 2px #FFFFCC solid; background: #0080FF; width: 150px; color: #FFFFCC; } #google { position: absolute; top: 200px; right: 20px; padding:0px; border: 2px #FFFFCC solid; background: #0080FF; width: 150px; z-index: 1; color: #FFFFCC; } #main { position: relative; top: 10px; width: 600px; border: 2px #FFFFCC solid; z-index: 2; } a:visited {color: #FFFFCC; text-decoration: none;} a:active {color: #FFFFCC; text-decoration: none;} a:link {color: #FFFFCC; text-decoration: none;} a:hover {color: #32CD32; text-decoration: none;} p {color: #FFFFCC;} </style> <body> <div id="container"> <div id="nav"> <table width=150><tr><td><p align=center><a href="http://www.zelocalz.com">Home</a></p></td></tr> <tr><td><p align=center><a href="http://www.zelocalz.com/browse.php">Browse</a></p></td></tr> <tr><td><p align=center><a href="http://www.zelocalz.com/newlist.php">Sell</a></p></td></tr> <tr><td><p align=center><a href="http://www.zelocalz.com/profile/profileh.php">Profile</a></p></td></tr> <tr><td><p align=center><a href="http://www.zelocalz.com/forum/index.php">Forum</a></p></td></tr> <tr><td><p align=center><a href="http://www.zelocalz.com/sign_up.php">Register</a></p></td></tr> <tr><td><p align=center><a href="http://www.zelocalz.com/help/topics.php">Help Topics</a></p></td></tr> </table> </div> <div id=google> <script type="text/javascript"><!-- google_ad_client = "pub-2239873906758408"; google_ad_width = 120; google_ad_height = 550; google_ad_format = "120x600_as"; google_ad_type = "text"; google_ad_channel = ""; google_color_border = "32CD32"; google_color_bg = "0080FF"; google_color_link = "FFFFCC"; google_color_text = "000000"; google_color_url = "FFFFCC"; //--> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> </div> <div id="header"> <img src=images/zelocalzbanner.png> </div> <div id="main">
  11. i decided to start over on my style, please be paitent as the site is css less atm
  12. well, i need help with a good layout idea, im not very good on flash so its hard, if anyone can give me some suggestions i would apprieciate it! http://www.zelocalz.com
  13. well, ive always done just local host in the connection to my database, know i want a page on my schools server to be able to connect but there local host isnt mine(DUH) what should i replace localhost with, or do to allow them to connect,(my connect page is an include on the page on there server that links back to my server that contains connect.php) but it still say that site@localhost does not have permission and it is there site.
  14. how do i do this again, just destroy all session that exist?
  15. ok,i am trying to work around doing this by adding the required php code in the php pages, i have modified the index page so that to save time trying to merge my "members" database with the "phpbb_users" i have created a code at the beginning that checks if there is an account on both with the same username and password, if there is i made it so it should login and if there isnt it makes one in the phpbb_users to match the one in my "members" database. now i keep comming up with errors. i had to bypass the whole "hacking atempt" system because it wasnt liking my code and know im getting "Fatal error: Call to a member function on a non-object in /home2/mattsweb/public_html/forum/main/includes/page_header.php on line 62" since im not all that familiar with the phpbb system of coding and have been kinda figuring it out as i go i can figure out whats is wrong. here is page_header.php up to that line! <?php /*************************************************************************** * page_header.php * ------------------- * begin : Saturday, Feb 13, 2001 * copyright : (C) 2001 The phpBB Group * email : support@phpbb.com * * $Id: page_header.php,v 1.106.2.25 2005/10/30 15:17:14 acydburn Exp $ * * ***************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * ***************************************************************************/ if ( !defined('IN_PHPBB') ) { die("Hacking attempt"); } define('HEADER_INC', TRUE); // // gzip_compression // $do_gzip_compress = FALSE; if ( $board_config['gzip_compress'] ) { $phpver = phpversion(); $useragent = (isset($HTTP_SERVER_VARS['HTTP_USER_AGENT'])) ? $HTTP_SERVER_VARS['HTTP_USER_AGENT'] : getenv('HTTP_USER_AGENT'); if ( $phpver >= '4.0.4pl1' && ( strstr($useragent,'compatible') || strstr($useragent,'Gecko') ) ) { if ( extension_loaded('zlib') ) { ob_start('ob_gzhandler'); } } else if ( $phpver > '4.0' ) { if ( strstr($HTTP_SERVER_VARS['HTTP_ACCEPT_ENCODING'], 'gzip') ) { if ( extension_loaded('zlib') ) { $do_gzip_compress = TRUE; ob_start(); ob_implicit_flush(0); header('Content-Encoding: gzip'); } } } } $template->set_filenames(array( 'overall_header' => ( empty($gen_simple_header) ) ? 'overall_header.tpl' : 'simple_header.tpl') ); //this is line 65//
  16. or what about just a page include? and the included page would have the php on it?
  17. how would i do this, i am intergrating a phpbb forum system into my site!
  18. thanks, i was sure those were them but dreamweaver wouldnt open them, i have it all configured now! thanks
  19. well im trying to modify my phpbb forum to suite my site better but i cant find the accual html that displays everything, all i find is a bunch of random php, no echos or anything.. please tell me where the accual html is!
  20. on the rate me page the rating goes off the page, make it stay in your mean colum..
  21. i used to play with lego when i was younger, when i went to get my first msn legohead was takin and it said would you like to try one of the following and i chose legohead6, since then that has always been my username for almost everything, if not legohead6 its legoman67... which came from when i joined RS....
  22. well ive made my own gadget but now i want to make it fancy and accually look usefull! Is there anyone else out there that has experiance with this and could give me a little help? I want to ad transparency, and how to make links to open the internet and other stuff.
  23. use a database to make a blog, if your site gets bussy it will be like hell slow...
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.