Hey, Here are some tips on reducing the load time of your website, if you have any ideas you can contact the mod(s) of this forum to add it!
1. Instead of having any css straight on your page using <style></style> attatch it!
First create a .css file and put in all your css code, then save it and put this before </head> in your site's code (Change the path in bold):
This can also be done with JavaScript. Just paste your code into a .js file and attatch it with this code before the </head> tag on your site (Change the path in bold):Code:<link href="mycss.css" rel="stylesheet" type="text/css">
2. If you are using a layout that you sliced, don't use background images that are just one plain colour, set it as a colour. This is obvious but i've done it before as a force of habit!Code:<link type="text/javascript" href="myjavascript.js" >
3. Use more CSS than HTML. For example:
Use:in CSS.Code:body { background-colour: #000000; }
Not:in HTML.Code:<body background="#000000">





Reply With Quote









