Jump to content

Remedy for reducing the website loading time?


stackon

Recommended Posts

You have several different css files,. You should try to combine into one and minify, reducing spacing,  removing comments, therefore accessing a single lighter file resource, instead of multiple bloated css files resources.

It should be the same for JS as well.

Edited by dsonesuk
Link to comment
Share on other sites

You have ten jpg images that are each over 100kb. One of them is 1.1mb. Use media queries to eliminate these images for small mobile devices.

@media screen and (max-width : 480px) {
.bigimg{
  display:none;
}
}

Or create smaller versions of these images for mobile devices.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...