Author Topic: your opinions on my website  (Read 942 times)

0 Members and 1 Guest are viewing this topic.

Offline MDanzTopic starter

  • Devotee
  • Posts: 706
    • View Profile
your opinions on my website
« on: February 04, 2010, 03:41:38 PM »
http://www.stackway.com/index.php


So far i just have it as a forum, but i might consider crawling websites but that is quite difficult and i'm still learning php. 

you can search "basketball", that's the only stuff i've added.
« Last Edit: February 04, 2010, 03:44:21 PM by MDanz »

Offline thewooleymammoth

  • Devotee
  • Posts: 757
  • Gender: Male
  • I am the soul collecter
    • View Profile
    • My Portfolio
Re: your opinions on my website
« Reply #1 on: February 04, 2010, 03:51:04 PM »
The links have a childish font
I would lose their bullets
align them left maybe(user search and user stacks on the right)
make the links look like buttons (everything else looks like buttons).

Instead of making the site content dividers extend across the screen, you could cut them off and and a drop shadow to gray (seems to be a more modern trend.)
http://www.westlakehardware.com/ has the drop shadow on the sides, instead of extending the background images across the whole browser, and it looks much nicer.
It also ads a much lighter feeling to the site, right now your site makes me feel kinda sad inside cause of all the dark colors.

I remember your old thread and i like this version much more (although i preferred the grays to the green), just needs a little help, almost there!

Offline MDanzTopic starter

  • Devotee
  • Posts: 706
    • View Profile
Re: your opinions on my website
« Reply #2 on: February 04, 2010, 10:54:24 PM »
ok i've changed the links for now.. how do they look? 


« Last Edit: February 04, 2010, 11:05:23 PM by MDanz »

Offline oni-kun

  • Addict
  • Posts: 1,964
  • Gender: Male
  • When you're down, Logic can be a cure.
    • View Profile
    • oni-kun.com
Re: your opinions on my website
« Reply #3 on: February 05, 2010, 04:34:22 AM »
The site looks to heavy to me. Invest in image compression and use GZ (like gzip) for faster serving of the files. Can be as simple as adding this one line at the top of your code: <?php
ob_start
('gz_handler');


Your forms "reggie -> Uzer" and "search" are suseptable to XSS, I'd recommend nullifying the following characters of which are at risk:
Code: [Select]
; \ / < > =
PHP Documentation (Examples and Usage) || Posting code? [php] Code Here [/php]. (good ref: Truth Tables )
//If you wish a program to have inf args. $params is an array of them.
function($args) {
  if (
is_scalar($args)) {$params func_get_args();}
}

Offline thewooleymammoth

  • Devotee
  • Posts: 757
  • Gender: Male
  • I am the soul collecter
    • View Profile
    • My Portfolio
Re: your opinions on my website
« Reply #4 on: February 05, 2010, 01:27:08 PM »
links look better. It might just be me, but im still not a fan of the rows going across the screen

got some html errors though

http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.stackway.com%2Findex.php

Did you learn HMTL a long time ago?

I noticed you are using tables for your layout, divs are whats generally used now.
I reccomend http://www.blueprintcss.org/ for formatting them.

Offline MDanzTopic starter

  • Devotee
  • Posts: 706
    • View Profile
Re: your opinions on my website
« Reply #5 on: February 05, 2010, 05:21:42 PM »
thanks for feed back.  a majority of the html errors are because div id's have to start with a letter, but because of javascript i started the id's with a number.  For some reason i couldn't get it  the javascript code to work starting with a letter. So for every result(block) it will come with invalid html markup.  I can live with that, most other site's i checked are not perfect either with html markup.

what's the benefit of divs over tables, is it a user advantage or a developer advantage?

yeah i'm working on the site to make it look "lite" on the eyes.

I started html since october last year, same wth php, so i'm learning on the go.

Offline thewooleymammoth

  • Devotee
  • Posts: 757
  • Gender: Male
  • I am the soul collecter
    • View Profile
    • My Portfolio
Re: your opinions on my website
« Reply #6 on: February 05, 2010, 07:20:27 PM »
Divs are more versatile then tables and (this is hearsay) they are easier for browsers to render.

Also you can take advantage of css grid frameworks with divs. Bringing me back to blueprintcss.

Makes life so easy.
Code: [Select]
<html>
<div class='container'><!--Creates a centered page thats 950px good to work on almost all resolutions-->
   <div class='span-24 last' id='banner'><!--'span-24 last' means it will be 24 columns wide and last means the next row will start below it. -->
   </div>
   <div class='span-24 last' id='nav'><!--'span-24 last' means it will be 24 columns wide and last means the next row will start below it. -->
      <a href=''>Link 1</a> | <a href=''>Link 2</a> | <a href=''>Link 3</a> |
   </div>
   <div class='span-4' id='ad1'><!--'span-4' will take up 4 columns and leave a 10px buffer between itself and content -->
   </div>
   <div class='span-18' id='content'><!--'span-18' will take up 18 columns and leave a 10px buffer between itself and ad2-->
      <p>Notice that all of the rows add up to 24. Its a 24 column system. Refer to the wiki for more help</p>
   </div>
   <div class='span-4 last' id='ad2'><!--'span-4 last' will take up 4 columns and finish of this row-->
   </div>
</div>

is all you need to create a banner div that floats perfectly across
a nav div right below it
an ad div to the left content in the middle and an ad2 div to the right.

set the heights in css and your set.

it also takes care of most css issues with ie.

http://urlgreyhot.com/personal/resources/photoshop_template_blueprint_css_comps . use this while your creating your site layout in photoshop and most of the layout work is done for you. just create background images that are the right size.
« Last Edit: February 05, 2010, 07:26:31 PM by thewooleymammoth »

Offline MDanzTopic starter

  • Devotee
  • Posts: 706
    • View Profile
Re: your opinions on my website
« Reply #7 on: February 10, 2010, 08:54:12 PM »
http://www.stackway.com/index.php

i've updated some stuff, to give new users more of an explanation of what the site does.  I'm interested in image compression, but i don't know quite how to do it?  what do i have to install on my server to compress images?

Offline thewooleymammoth

  • Devotee
  • Posts: 757
  • Gender: Male
  • I am the soul collecter
    • View Profile
    • My Portfolio
Re: your opinions on my website
« Reply #8 on: February 11, 2010, 01:55:35 PM »
http://us2.php.net/manual/en/book.image.php

or just search tutorials, i like how it looks alot more now.