Go Back   Free website templates > Community Center > General Chat
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read


Join now to download all the free website templates or post on the forum. If you have never been on a forum before read the FAQ. It's quick, easy and free to join!
Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 05-29-2009, 04:56 AM
GDSweb.ca's Avatar
Moderator/Developer
 
Join Date: May 2009
Location: Winnipeg, MB, Canada
Posts: 213
GDSweb.ca is on a distinguished road
Talking How about Blueprint CSS?

Is anyone else out there using this?

I ended up creating my web design site around it.....
__________________
Free D-loads ->

[ Blackdrop Media Icons ][ 3D Wordpress Icons ][ jQuery Navigation ][ 2 Page Template ]




--> Follow Me on [Twitter] --> Be a Fan on [Facebook] --> My Site's RSS [GDS Blog Feed]
Reply With Quote
  #2 (permalink)  
Old 06-07-2009, 01:38 AM
GDSweb.ca's Avatar
Moderator/Developer
 
Join Date: May 2009
Location: Winnipeg, MB, Canada
Posts: 213
GDSweb.ca is on a distinguished road
Default

Wow, I'm the only one using it?

Or maybe nobody knows what it is....

Quote:
Originally Posted by Blueprint CSS Website
Blueprint is a CSS framework, which aims to cut down on your development time. It gives you a solid foundation to build your project on top of, with an easy-to-use grid, sensible typography, useful plugins, and even a stylesheet for printing.

What does Blueprint have to offer?

  • A CSS reset that eliminates the discrepancies across browsers.
  • A solid grid that can support the most complex of layouts.
  • Typography based on expert principles that predate the web.
  • Form styles for great looking user interfaces.
  • Print styles for making any webpage ready for paper.
  • Plugins for buttons, tabs and sprites.
  • Tools, editors, and templates for every step in your workflow.
All in all it's worth checking out!
__________________
Free D-loads ->

[ Blackdrop Media Icons ][ 3D Wordpress Icons ][ jQuery Navigation ][ 2 Page Template ]




--> Follow Me on [Twitter] --> Be a Fan on [Facebook] --> My Site's RSS [GDS Blog Feed]
Reply With Quote
  #3 (permalink)  
Old 06-07-2009, 02:29 PM
ishkey's Avatar
Moderator
 
Join Date: Aug 2007
Location: North GA USA
Posts: 1,360
ishkey will become famous soon enough
Default

Long ago looked at and deceided it was not for me. To many reasons to list.

But noticed your site.
http://www.gdsweb.ca/ loads very slowly 77.84 seconds (ISDN 128K) when my cache is cleared and slowly 32.5 seconds thereafter when cached.

Global Statistics
Total HTTP Requests: 29 <---- (too many requests)
Total Size: 1180272 bytes
Object Size Totals
Object type Size (bytes) Download @ 56K (seconds) Download @ T1 (seconds)
HTML: 8282 1.85 0.24
HTML Images: 362395 74.22 3.92
CSS Images: 799405 161.92 6.84
Total Images: 1161800 236.14 10.76
javascript: 3876 1.17 0.42
CSS: 6314 1.86 0.63
Multimedia: 0 0.00 0.00
Other: 0 0.00 0.00
External Objects
External Object QTY
Total HTML: 1
Total HTML Images: 10
Total CSS Images: 13
Total Images: 23
Total Scripts: 2
Total CSS imports: 3
Total Frames: 0
Total Iframes: 0

Your site is using HTTP compression, otherwise called content encoding using gzip. Most people do not use compression. Don't known if it is in the framework or you put it in.
*** Some futher areas you can improve the download speed.***
Noticed in your code:
The total number of objects on this page is 29 which by their number will dominate web page delay.
Above 20 objects per page the overhead from dealing with the actual objects accounts for more than 80% of whole page latency.
Minimize HTTP requests - 3 css files into one.
Often developers create separate style sheets and scripts for organizational purposes, and import them into their pages as needed. There are two problems with this approach:
1. it requires additional HTTP requests, and
2. you can encounter the same-domain connection limit
By combining external files and optionally including CSS and JavaScript directly within your XHTML pages, you can minimize the number of HTTP requests required to render your page. Each unique HTTP request requires a round trip to a server, introducing indeterminate delays. Users attune to fast, consistent response times. The more HTTP requests that your pages require, the slower and less consistent their response time will be.
This technique is especially important in the head of your XHTML documents. With few exceptions, browsers must load and parse external CSS and JavaScript files referenced within the head of your XHTML before they parse the body content. By minimizing the HTTP request load you can maximize the initial display speed of your content.
Combined all css files into one. You might want to try it out. combined.css (zipped file)
********************************************
Another method:
Scripts that load in the head of your HTML document actually block the loading and parsing of other objects, until they are downloaded.
You need to tell the server two things: first, to parse CSS files for PHP commands and second, to send the correct MIME type:
AddHandler application/x-httpd-php .css
header('Content-type: text/css');Next you can merge your CSS files together with PHP inside the CSS file like this:
<?php
include("layout.css");
include("navigation.css");
include("advanced.css");
?>
To deliver files based on browser environment variables (for example, to simulate an @import to filter out older browsers), you could use software like phpsniff available at Sourceforge phpsniff. http://sourceforge.net/projects/phpsniff/
As specified above, the dynamic CSS file will not cache properly. If you add the following headers to the top of your PHP file after the content type, they will cache for three hours (adjust 10,800 seconds as necessary).
header('Cache-control: must-revalidate');
header('Expires: ' . gmdate('D, d M Y H:i:s', time() + 10800) . ' GMT');
********************************************
Finally you could look into css sprites - a bit harder then above methods. (google, yahoo and others use this method)
********************************************
Javascript in the body:
Should be placed just before the close </body>. See if you can move <!-- start feedwind code --> down there and test the page, to see if it still functions properly.
********************************************
Images:
The total size of your images is 1161800 bytes. Maybe try to optimize them more for size, re-upload and let gzip do it's thing.

Just some thoughts - ideas for you to look at.
Hope you don't mind.
Attached Files
File Type: zip combined.zip (1.5 KB, 50 views)
__________________
RIF= Reading Is Fun - Understanding Funner
cleandeck - lawn mower undercoating and wilmargraphite - graphite lubricants
Reply With Quote
  #4 (permalink)  
Old 06-07-2009, 10:14 PM
GDSweb.ca's Avatar
Moderator/Developer
 
Join Date: May 2009
Location: Winnipeg, MB, Canada
Posts: 213
GDSweb.ca is on a distinguished road
Default

Thanks bud, I'll give the single css a try....

For me the site loads in about 5 seconds, so that's good info on what other people experience.

And I don't mind.....as long as it's from someone that's qualified to give pointers like that out =)
__________________
Free D-loads ->

[ Blackdrop Media Icons ][ 3D Wordpress Icons ][ jQuery Navigation ][ 2 Page Template ]




--> Follow Me on [Twitter] --> Be a Fan on [Facebook] --> My Site's RSS [GDS Blog Feed]
Reply With Quote
  #5 (permalink)  
Old 06-08-2009, 02:39 AM
ishkey's Avatar
Moderator
 
Join Date: Aug 2007
Location: North GA USA
Posts: 1,360
ishkey will become famous soon enough
Default

No, I have look at the site several times and from 3 different IPs still loads slow way down here. Glad you didn't mind my thoughts.
And No CP it is not Greek, just another form of english like when you do that Graphic Speak Stuff you do. Half of which takes me days just to understand, let alone figure out how you heck you can do it so fast.
__________________
RIF= Reading Is Fun - Understanding Funner
cleandeck - lawn mower undercoating and wilmargraphite - graphite lubricants
Reply With Quote
Reply

Thread Tools
Display Modes

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
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 01:04 AM.



mouseover mouseover mouseover