Homepage size

Soldato
Joined
26 Nov 2002
Posts
6,852
Location
Romford
Are there any professional website designers here? If so, would you say that 4.5MB for a homepage is excessive? When I analysis many other popular sites, they are under 1MB is size. This new design seems big to me, causing excessive traffic.
 
Soldato
OP
Joined
26 Nov 2002
Posts
6,852
Location
Romford
Yes, that's the tool I used to check.

It's one rotating image on a carousal that is around 3.5MB, would a large image like that controlled by a script potentially experience problem during peak periods?
 
Soldato
Joined
14 Dec 2005
Posts
12,488
Location
Bath
I've recently got mine down to 700kB, well pleased!

Quick tips are to minify your CSS and JS (with it being on CDN as much as possible of-course), enable gzip in your htaccess if not already, and to seriously optimise your images.
Quick workflow for images that I follow once I've got the resolution correct:
For each image I think about which file type will be best (jpeg/png/gif all have their pros and cons).
Convert colours to colour profile sRGB IEC61966 and then remove the colour profile data from the file.
If jpeg, use the compression until you can see artefacts when zoomed in (normally around 8 I find).
If png, stick it through http://compresspng.com
Then run all images through http://imageoptim.com
 
Soldato
OP
Joined
26 Nov 2002
Posts
6,852
Location
Romford
Useful, thanks. Although I'm just the server admin guy, I'm trying to push back to the web guys, get them to sort out the html, rather then look at the server side.

3 people in the loop, web, iis admin and me the VM admin. (I know very little about web or iis)
 
Soldato
Joined
9 Mar 2010
Posts
2,841
If one image is 3.5MB the others are likely to be quite large as well and taking up the majority of your 4.5MB total.

Sounds like you just need to fix them and you'll be down to a reasonable amount (under 1MB)
 
Commissario
Joined
23 Nov 2004
Posts
42,065
Location
Herts
I've recently got mine down to 700kB, well pleased!

Quick tips are to minify your CSS and JS (with it being on CDN as much as possible of-course), enable gzip in your htaccess if not already, and to seriously optimise your images.
Quick workflow for images that I follow once I've got the resolution correct:
For each image I think about which file type will be best (jpeg/png/gif all have their pros and cons).
Convert colours to colour profile sRGB IEC61966 and then remove the colour profile data from the file.
If jpeg, use the compression until you can see artefacts when zoomed in (normally around 8 I find).
If png, stick it through http://compresspng.com
Then run all images through http://imageoptim.com

Yours doesn't work?!
 

AJK

AJK

Associate
Joined
8 Sep 2009
Posts
1,722
Location
UK
I'm guessing poorly optimised images?

If one image is 3.5MB the others are likely to be quite large as well and taking up the majority of your 4.5MB total.

This, absolutely. Unless the HTML, CSS and JavaScript are absolutely beyond horrific (I won't rule it out, but it's unlikely), they won't account for more than a few hundred KB at worst. Image optimisation is what you need to look at here.

The Google page speed extensions (I use Firefox + Firebug for dev work) are excellent at pointing out page size issues:

https://developers.google.com/speed/pagespeed/insights_extensions
 
Back
Top Bottom