Website Critiques
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsWeb DesignWebsite Critiques

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old July 19th, 2004, 03:48 PM
MGCloud MGCloud is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2003
Posts: 18 MGCloud User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 3 h 9 m 10 sec
Reputation Power: 0
http://www3.telus.net/mguzman/testnewsite/

Hi,

I just made my first webpage using an entirely CSS-driven layout with separation of style and content. I'm pretty proud of it actually It's not as fancy as some of the other pages I've seen here, but I like it.

Because my ability to run web browsers is kind of limited (I'm on Linux, so I can only use Mozilla and Opera), and my brother refuses to let me install any browsers besides firefox on his xp box (but i was able to test in IE6), I'm wondering if any of you guys could give me a hand. Looking for test cases with Opera <7, IE <6, NN any version, and Mozilla <1.7.

Any help whatsoever would be greatly appreciated.

http://www3.telus.net/mguzman/testnewsite/

(all the graphics and the layout are made by (with the use of royalty-free stock photos) and copyrighted to me - this is NOT a template, although it was inspired by the design of a couple of other sites ^^)

Constructive comments would also be greatly appreciated, although I'm mainly looking for compatibility issues at the moment, because this may turn out to be the new webpage of a corporation.

Thank you!

Reply With Quote
  #2  
Old July 19th, 2004, 04:23 PM
Akh's Avatar
Akh Akh is offline
|<.+#f@#+.&.|
Dev Shed Frequenter (2500 - 2999 posts)
 
Join Date: Mar 2002
Location: norway
Posts: 2,591 Akh User rank is Colonel (50000 - 60000 Reputation Level)Akh User rank is Colonel (50000 - 60000 Reputation Level)Akh User rank is Colonel (50000 - 60000 Reputation Level)Akh User rank is Colonel (50000 - 60000 Reputation Level)Akh User rank is Colonel (50000 - 60000 Reputation Level)Akh User rank is Colonel (50000 - 60000 Reputation Level)Akh User rank is Colonel (50000 - 60000 Reputation Level)Akh User rank is Colonel (50000 - 60000 Reputation Level)Akh User rank is Colonel (50000 - 60000 Reputation Level)Akh User rank is Colonel (50000 - 60000 Reputation Level)Akh User rank is Colonel (50000 - 60000 Reputation Level)Akh User rank is Colonel (50000 - 60000 Reputation Level) 
Time spent in forums: 3 Weeks 5 Days 12 h 57 m 52 sec
Reputation Power: 511
not a bad layout,
and not to bad markup

though you rather should use a link-tag for the css-file instead
of @import, not every browser caches the css-file if @import is used.
and you should drop those empty elements at the bottom
<p><br/></p> use css to make margins.


and i have to comment on your choice of doctype,
with xhtml1.1 you should deliver the document with application/xhtml+xml. not text/html.
http://www.w3.org/TR/xhtml-media-types/

unfortunaltly not every browser support application/xhtml+xml,
at the time begin just mozilla and opera7 does it.

so you should rather backtrack to 'xhtml1.0 strict' which allows the document to be delivered as text/html,
then you could use an apache mod-rewrite and deliever it as
application/xhtml+xml to the browsers that accepts this or just as text/html to each browser.

http://www.greytower.net/en/archive...tmlcontent.html

Reply With Quote
  #3  
Old July 19th, 2004, 04:53 PM
Cuda Cuda is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2004
Location: Houston, Texas for now
Posts: 59 Cuda User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 59 m 32 sec
Reputation Power: 4
Send a message via ICQ to Cuda
Just wanted to drop you a line and say the site works fine in NN 7.1.

Regards,
Cuda

-----------------------------------------------------------
Web Design by Barracuda Productions

Reply With Quote
  #4  
Old July 20th, 2004, 02:46 AM
MGCloud MGCloud is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2003
Posts: 18 MGCloud User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 3 h 9 m 10 sec
Reputation Power: 0
Hey - thanks so much for the help you guys!

I'm going to be incorporating your suggestions when I make the final layout.

Reply With Quote
  #5  
Old July 20th, 2004, 03:20 AM
ronburk ronburk is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2004
Posts: 10 ronburk User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 37 m 24 sec
Reputation Power: 0
The way I read the spec, the "id" attribute must be unique within a document. In which case, using an "id" of "tagline" twice would be verboten.

Reply With Quote
  #6  
Old July 20th, 2004, 04:47 AM
keyur parikh keyur parikh is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2004
Posts: 4 keyur parikh User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Good

Nice Try...

I have try on IE < 6 , it's working fine....

Reply With Quote
  #7  
Old July 20th, 2004, 01:55 PM
MGCloud MGCloud is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2003
Posts: 18 MGCloud User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 3 h 9 m 10 sec
Reputation Power: 0
Quote:
Originally Posted by ronburk
The way I read the spec, the "id" attribute must be unique within a document. In which case, using an "id" of "tagline" twice would be verboten.


I know this probably isn't the best solution but CSS is case sensitive - therefore "tagline" and "tagLine" are different. Those were quickly thrown in when I was developing the site just so I could test some FIR alternatives there - but it turned out the image didn't look right.

Thanks again everyone!!

Reply With Quote
  #8  
Old July 22nd, 2004, 06:41 AM
JonnyboyH JonnyboyH is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Mar 2004
Location: On the web
Posts: 105 JonnyboyH User rank is Private First Class (20 - 50 Reputation Level)JonnyboyH User rank is Private First Class (20 - 50 Reputation Level) 
Time spent in forums: 7 h 3 m 11 sec
Reputation Power: 5
I like the layout, can't comment on the html/css. Looks fine in IE 5.5.

Why leave the blank white rectangle at the top right of the page?

John.

Reply With Quote
  #9  
Old July 22nd, 2004, 11:42 AM
MGCloud MGCloud is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2003
Posts: 18 MGCloud User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 3 h 9 m 10 sec
Reputation Power: 0
Thanks!

I'm not exactly sure why IE5.5 does that.

Basically what I have is a DIV of width 780px (basically 100% width) with a background of #026, which is the blue colour. On most other browsers it displays the blue extending to the edge, but on IE5.5 it doesn't seem to be able to.

Reply With Quote
Reply

Viewing: Dev Shed ForumsWeb DesignWebsite Critiques > http://www3.telus.net/mguzman/testnewsite/


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

 Free IT White Papers!
 
Accelerating Trading Partner Performance
One in five. That's how many partner transactions have at least one error. That is an amazing statistic, particularly given the extraordinary leaps in innovation across the global supply chain during the past two decades. Download this white paper to learn more.

 
Competing on Analytics
This Tech Analysis is designed to help identify characteristics shared by analytics competitors, and includes information about 32 organizations that have made a commitment to quantitative, fact-based analysis.

 
Cost Effective Scaling with Virtualization and Coyote Point Systems
An overview of the industry trend toward virtualization, how server consolidation has increased the importance of application uptime and the steps being taken to integrate load balancing technology with virtualized servers.

 
Five Checkpoints to Implementing IP Telephony
Implementation planning for IP PBX software and IP telephony has become vital as businesses replace discontinued legacy PBX phone systems. This informative whitepaper outlines five "checkpoints" for any implementation plan that will help make IP communications a successful proposition.

 
Hosted Email Security: Staying Ahead of New Threats
In the last two years, email has become a fierce battleground between the nefarious forces of spam and malware, and the heroes of messaging protection. The spam volumes increased alarmingly every month, bringing clever new forms of phishing and virus propagation attacks.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 3 hosted by Hostway