Go Back   CodingForums.com > :: Client side development > General web building > Site reviews

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 07-08-2005, 11:16 PM   PM User | #1
Ranger56
Regular Coder

 
Ranger56's Avatar
 
Join Date: Mar 2005
Location: Kent, WA.
Posts: 783
Thanks: 0
Thanked 0 Times in 0 Posts
Ranger56 is an unknown quantity at this point
Review design.

http://www.spiderseatbabies.com/swee/index.php

thanks

Last edited by Ranger56; 07-09-2005 at 10:08 PM..
Ranger56 is offline   Reply With Quote
Old 07-09-2005, 08:49 AM   PM User | #2
mw2005
Regular Coder

 
Join Date: Jul 2005
Posts: 352
Thanks: 1
Thanked 0 Times in 0 Posts
mw2005 is an unknown quantity at this point
There is a very good design and i especially like the customised w3c buttons. Are the buttons images?

Last edited by mw2005; 07-11-2005 at 08:17 PM..
mw2005 is offline   Reply With Quote
Old 07-09-2005, 10:07 PM   PM User | #3
Ranger56
Regular Coder

 
Ranger56's Avatar
 
Join Date: Mar 2005
Location: Kent, WA.
Posts: 783
Thanks: 0
Thanked 0 Times in 0 Posts
Ranger56 is an unknown quantity at this point
what the crap. just a sec....


Try Again.
Ranger56 is offline   Reply With Quote
Old 07-09-2005, 11:57 PM   PM User | #4
Kurashu
Regular Coder

 
Join Date: Aug 2004
Location: The US of A
Posts: 767
Thanks: 1
Thanked 0 Times in 0 Posts
Kurashu is an unknown quantity at this point
You naviagtion could be turned into a list.
You are serving XHTML 1.1 as text/html.

I'm sure there is other stuff that could be fixed. Looks nice though. I like it.
Kurashu is offline   Reply With Quote
Old 07-10-2005, 12:07 AM   PM User | #5
Ranger56
Regular Coder

 
Ranger56's Avatar
 
Join Date: Mar 2005
Location: Kent, WA.
Posts: 783
Thanks: 0
Thanked 0 Times in 0 Posts
Ranger56 is an unknown quantity at this point
Quote:
Originally Posted by Kurashu
You naviagtion could be turned into a list.
You are serving XHTML 1.1 as text/html.


I'm sure there is other stuff that could be fixed. Looks nice though. I like it.

Explain?
Ranger56 is offline   Reply With Quote
Old 07-10-2005, 01:07 AM   PM User | #6
Kurashu
Regular Coder

 
Join Date: Aug 2004
Location: The US of A
Posts: 767
Thanks: 1
Thanked 0 Times in 0 Posts
Kurashu is an unknown quantity at this point
This...
Code:
<div id="nav">
<a href="#" title="Lorem">Lorem</a>  |  
<a href="#" title="Ipsum">Ipsum</a>  |  
<a href="#" title="Dolor">Dolor</a>  |  
<a href="#" title="sit">Sit</a>  |  
<a href="#" title="Amet">Amet</a>
</div>
Could be better marked up as...

Code:
HTML

<div id="nav">
<ul>
<li><a href="#" title="Lorem">Lorem</a></li>
<li><a href="#" title="Ipsum">Ipsum</a></li>
<li><a href="#" title="Dolor">Dolor</a> </li>
<li><a href="#" title="sit">Sit</a></li>
<li><a href="#" title="Amet">Amet</a></li>
</ul>
</div>

CSS

#menu ul {
margin: 0 auto;
padding: 0;
list-style-type: none;
}

#menu ul li {
display: inline;
margin: 0 0 0 .5em;
}

#menu ul li:before {
content: '|'; /* I have no idea what the Hex code for this is. */
}

#menu ul li:before:first-child {
content: '';
}
As for the XHTML 1.1, you MUST serve it as application/xhtml+xml. You can skim by serving it as text/html like you can with XHTML 1.0.

There is a small script floating around that'll convert XHTML 1.1 to HTML 4.01 Strict when a browser that can't handle application/xhtml+xml views the page.

Here's the one I have:
PHP Code:
$charset = 'utf-8';
function fix_code($buffer)
    {
    $str = (str_replace(" />", ">", $buffer));
    return (str_replace("xml:lang", "lang", $str));
    }

    if ((stristr($_SERVER["HTTP_ACCEPT"], 'application/xhtml+xml'))  || (stristr($_SERVER["HTTP_USER_AGENT"], 'W3C_Validator')) || (stristr($_SERVER["HTTP_USER_AGENT"], 'WDG_Validator')))
        {
        $mime = 'application/xhtml+xml';
        }
    else 
        {
        $mime = 'text/html';
        }
    header ("Content-type: $mime");
    if ($mime == "application/xhtml+xml")
        {
        echo '<?xml version="1.0" encoding="' . $charset . '"?>
        <!DOCTYPE html PUBLIC "-//W3C//liD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/liD/xhtml11.lid">';
        }
    else
        {
        echo '<!DOCTYPE HTML PUBLIC "-//W3C//liD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.lid">';
        ob_start("fix_code");
        }
?>
<html <?php if ($mime == "application/xhtml+xml") { echo'xmlns="http://www.w3.org/1999/xhtml"'; } ?> xml:lang="en">
Kurashu is offline   Reply With Quote
Old 07-10-2005, 01:09 AM   PM User | #7
Ranger56
Regular Coder

 
Ranger56's Avatar
 
Join Date: Mar 2005
Location: Kent, WA.
Posts: 783
Thanks: 0
Thanked 0 Times in 0 Posts
Ranger56 is an unknown quantity at this point
Quote:
Originally Posted by Kurashu
This...
Code:
<div id="nav">
<a href="#" title="Lorem">Lorem</a>  |  
<a href="#" title="Ipsum">Ipsum</a>  |  
<a href="#" title="Dolor">Dolor</a>  |  
<a href="#" title="sit">Sit</a>  |  
<a href="#" title="Amet">Amet</a>
</div>
Could be better marked up as...

Code:
HTML

<div id="nav">
<ul>
<li><a href="#" title="Lorem">Lorem</a></li>
<li><a href="#" title="Ipsum">Ipsum</a></li>
<li><a href="#" title="Dolor">Dolor</a> </li>
<li><a href="#" title="sit">Sit</a></li>
<li><a href="#" title="Amet">Amet</a></li>
</ul>
</div>

CSS

#menu ul {
margin: 0 auto;
padding: 0;
list-style-type: none;
}

#menu ul li {
display: inline;
margin: 0 0 0 .5em;
}

#menu ul li:before {
content: '|'; /* I have no idea what the Hex code for this is. */
}

#menu ul li:before:first-child {
content: '';
}
As for the XHTML 1.1, you MUST serve it as application/xhtml+xml. You can skim by serving it as text/html like you can with XHTML 1.0.

There is a small script floating around that'll convert XHTML 1.1 to HTML 4.01 Strict when a browser that can't handle application/xhtml+xml views the page.

Here's the one I have:
PHP Code:
$charset = 'utf-8';
function fix_code($buffer)
    {
    $str = (str_replace(" />", ">", $buffer));
    return (str_replace("xml:lang", "lang", $str));
    }

    if ((stristr($_SERVER["HTTP_ACCEPT"], 'application/xhtml+xml'))  || (stristr($_SERVER["HTTP_USER_AGENT"], 'W3C_Validator')) || (stristr($_SERVER["HTTP_USER_AGENT"], 'WDG_Validator')))
        {
        $mime = 'application/xhtml+xml';
        }
    else 
        {
        $mime = 'text/html';
        }
    header ("Content-type: $mime");
    if ($mime == "application/xhtml+xml")
        {
        echo '<?xml version="1.0" encoding="' . $charset . '"?>
        <!DOCTYPE html PUBLIC "-//W3C//liD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/liD/xhtml11.lid">';
        }
    else
        {
        echo '<!DOCTYPE HTML PUBLIC "-//W3C//liD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.lid">';
        ob_start("fix_code");
        }
?>
<html <?php if ($mime == "application/xhtml+xml") { echo'xmlns="http://www.w3.org/1999/xhtml"'; } ?> xml:lang="en">

Can't I just change the doctype?
Ranger56 is offline   Reply With Quote
Old 07-10-2005, 01:51 AM   PM User | #8
Kurashu
Regular Coder

 
Join Date: Aug 2004
Location: The US of A
Posts: 767
Thanks: 1
Thanked 0 Times in 0 Posts
Kurashu is an unknown quantity at this point
Doesn't change the fact that you should serve XHTML AS application/xhtml+xml and that you MUST serve XHTML 1.1 as that.

There isn't much difference between XHTML 1.1 and HTML 4.01 Strict, just a few tags that you aren't using. So, yes you could just change the DTD.
Kurashu is offline   Reply With Quote
Old 07-10-2005, 02:34 AM   PM User | #9
Ranger56
Regular Coder

 
Ranger56's Avatar
 
Join Date: Mar 2005
Location: Kent, WA.
Posts: 783
Thanks: 0
Thanked 0 Times in 0 Posts
Ranger56 is an unknown quantity at this point
the hex for "|" is 7C
Ranger56 is offline   Reply With Quote
Old 07-11-2005, 11:03 AM   PM User | #10
zro@rtv
Regular Coder

 
zro@rtv's Avatar
 
Join Date: Feb 2005
Location: on the network
Posts: 433
Thanks: 0
Thanked 1 Time in 1 Post
zro@rtv is an unknown quantity at this point
i know its filler, but have you played with formatting the content text?

like some bold italic or blockquoted loren ipsums's?
maybe even some links or H tags?

thats a big block of plain text there....
the graphics are nice though, even tho i don't like blue.

and how bout a "logo"....
simple vector graphic of a spider eatin a baby.... that'd be real cool.
__________________
._-zro
zro@redtv
zro.redtv.org

"If HTML and the Web made all the online documents look like one huge book, RDF, schema, and inference languages will make all the data in the world look like one huge database"
-Tim Berners-Lee, Weaving the Web, 1999
zro@rtv is offline   Reply With Quote
Old 07-11-2005, 05:39 PM   PM User | #11
Ranger56
Regular Coder

 
Ranger56's Avatar
 
Join Date: Mar 2005
Location: Kent, WA.
Posts: 783
Thanks: 0
Thanked 0 Times in 0 Posts
Ranger56 is an unknown quantity at this point
Quote:
Originally Posted by zro@rtv
i know its filler, but have you played with formatting the content text?

like some bold italic or blockquoted loren ipsums's?
maybe even some links or H tags?

thats a big block of plain text there....
the graphics are nice though, even tho i don't like blue.

and how bout a "logo"....
simple vector graphic of a spider eatin a baby.... that'd be real cool.
Yeah I have done links and other text formatting, just haven't uploaded it.


I can't do art good.
Ranger56 is offline   Reply With Quote
Old 07-11-2005, 11:39 PM   PM User | #12
zro@rtv
Regular Coder

 
zro@rtv's Avatar
 
Join Date: Feb 2005
Location: on the network
Posts: 433
Thanks: 0
Thanked 1 Time in 1 Post
zro@rtv is an unknown quantity at this point
really? got ps?

2 minutes stealing from google...
13 seconds in photoshop?
you made the other stuff, right?
can't make a little logo?
Attached Thumbnails
Click image for larger version

Name:	spiders-eat-babies.gif
Views:	123
Size:	41.6 KB
ID:	3607  
__________________
._-zro
zro@redtv
zro.redtv.org

"If HTML and the Web made all the online documents look like one huge book, RDF, schema, and inference languages will make all the data in the world look like one huge database"
-Tim Berners-Lee, Weaving the Web, 1999
zro@rtv is offline   Reply With Quote
Old 07-12-2005, 02:35 AM   PM User | #13
Ranger56
Regular Coder

 
Ranger56's Avatar
 
Join Date: Mar 2005
Location: Kent, WA.
Posts: 783
Thanks: 0
Thanked 0 Times in 0 Posts
Ranger56 is an unknown quantity at this point
Quote:
Originally Posted by zro@rtv
2 minutes stealing from google...
13 seconds in photoshop?
you made the other stuff, right?
can't make a little logo?

I have ps(trial), and I've never been able to make something i liked.
Ranger56 is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 03:20 AM.


Advertisement
Log in to turn off these ads.