Jump to content
MakeWebGames

BSM's New Look


ishmell

Recommended Posts

Nice but 771 Kb is a lil bit overboard for a page, try to keep your pages below 150Kb

Also think on your bandwidth not only the download speed of your members. 3000 visits a day is already +2 Gb for that single page.

Small changes could help you already,

example BSMHM9.jpg could be 1 pixel of width, BSMH7.jpg could also be 1 pix width

This would already be dropping 43Kb

The buttons, make them CSS buttons instead of images that's another 154Kb saved

Link to comment
Share on other sites

Yeh that's true, for the first little while ill keep it how it is now with only a few adjustments and if I begin to see allot of visits/space being used by others then ill defiantly focus on reducing its size. I have a couple virtual private servers, one thats not doing anything so space is not an issue.

Link to comment
Share on other sites

Another aproach to the loading times of a page.

Im not sure if this is done much anymore, but personally when i release my current project I will be offering a very nice looking layout as the norm.

But will be offering users an option on the home page to revert to a low graphic template to take low connection speeds into account.

This way all users have the best of both worlds.

Link to comment
Share on other sites

interesting concept

found this snippet that could be used kinda for the above idea

 

<script type="text/javascript">
<!--
//Bandwidth Redirect ver:1.0
function setBandwidth(whichVal){
var expdate = new Date();
expdate.setTime(expdate.getTime() + (60*60*24*365));
document.cookie = 'setbandwidth=' + whichVal + '; expires=' + expdate.toGMTString() + '; path=/';
}
BCt=new Date();
BCs=BCt.getTime();
function bandwidthDetect() {
var args=bandwidthDetect.arguments;
var el=(document.layers)?document.layers['Layer1'].document.Myimage1:document.Myimage1;
if(el.complete){
BCt=new Date();
BCe=BCt.getTime();
BCd=(BCe-BCs)/1000;
if(document.cookie.indexOf('setbandwidth=1')>=1) {
location.href=args[1];}else
if(document.cookie.indexOf('setbandwidth=2')>=1) {s
location.href=args[2];}else
if(BCd<args[0]){setBandwidth(1);location.href=args[1];}else
if(BCd>=args[0]){setBandwidth(2);self.location.href=args[2];}
}
}
//BRD_End
//-->
</script>
</head>

<body text="#333333" link="#0066CC" vlink="#0066CC" alink="#FF0000" onload="bandwidthDetect('4.5','http://www.url.com/fast.html','http://www.url.com/slow.html')">

<div id="Layer1" style="position:absolute; left:0px; top:0px; width:174px; height:60px; z-index:1; visibility: hidden"> 

[img=imagetoload.gif]</div>

<div align="center">


Determining your connection speed.... </p>
</div>
</body>
</html>
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...