 
                                
                    
                        Re: Website feedback
                        Posted by Orpheus on 
    Fri Mar 3rd 2006 at 12:33am
                     
                    
                        
                        Posted 
    2006-03-03 12:33am
                     
                 
                
            
            
                
    
                    
                             Orpheus
                            Orpheus
            
                        member
     
            13860 posts
        2024 snarkmarks
        Registered: 
    Aug 26th 2001
                    Occupation: Long Haul Trucking
                            Location: Long Oklahoma - USA
             
                
                        Welcome home Mike.
This may or may not be a concern for you since the majority of your hits will probably come from a school you attend or one similar and they will surely have broadband.
The web page took in excess of 45 seconds to load fully. I was connected at 4.2 at the time and I feel thats about normal for dial up.
I will attempt to comment further but as you know, I am not particularly in love with badminton :razz:
I do however like the ease on the eyes color scheme you chose. Not only is it easy to read, but somehow you picked different colors that harmonize well.
Good luck with this.
[edit] Oh f**king cool. The top layer is semi-transparent. I can actually see the background when I scroll. Nice. :smile:
                                            
                        
The best things in life, aren't things.
                                    
             
        
            
            
                                     
                                
                    
                        Re: Website feedback
                        Posted by Gollum on 
    Fri Mar 3rd 2006 at 8:50am
                     
                    
                 
                
            
            
                
    
                    
                             Gollum
                            Gollum
            
                        member
     
            1268 posts
        525 snarkmarks
        Registered: 
    Oct 26th 2001
                    Occupation: Student
                            Location: Oxford, England
             
                
                        Very perceptive comments, guys :smile:
I've also noticed the Firefox "text resize bug".  I don't think there's anything I can do about this -- it's a very simple javascript function, which suggests that the problem is Firefox's rendering.   I would be very happy, however, if anyone could suggest a method of fixing it.
In Firefox 1.5, the rendering errors only occur on the links in the top panel, not in the main text body.
A screenshot would be helpful, so I can be sure we are seeing the same thing.
Could you also post a screenshot of the "underline not extending" problem, please?  I think you may be referring to the third-level headings, but I cannot replicate this bug in Firefox 1.5.  Or are we still on the top-panel links?
Good pickup with the incomplete sentence.
Orph, your comment about download time is highly relevant.  My audience is the entire online global badminton community, so I cannot assume broadband.
I'm in two minds about this one.  On the one hand, I hate large images on the web.  On the other hand, I like the look of the site.
Do the large images force you to wait for the content, or were you able to start reading the content immediately?  And was it the CORRECT content, or did you get stuck with that red notice about javascript?
In fact, perhaps I should test this myself by uploading HUGE versions of the images to slow down my broadband...
                                    
             
        
            
            
                                     
                                
                    
                        Re: Website feedback
                        Posted by Gollum on 
    Fri Mar 3rd 2006 at 10:15am
                     
                    
                        
                        Posted 
    2006-03-03 10:15am
                     
                 
                
            
            
                
    
                    
                             Gollum
                            Gollum
            
                        member
     
            1268 posts
        525 snarkmarks
        Registered: 
    Oct 26th 2001
                    Occupation: Student
                            Location: Oxford, England
             
                
                        Hmmm.  The large image sizes DO seem to delay reading the content.  I'll have to see what I can do about that...
                                    
             
        
            
            
                                     
                                
                    
                        Re: Website feedback
                        Posted by Gollum on 
    Fri Mar 3rd 2006 at 3:27pm
                     
                    
                 
                
            
            
                
    
                    
                             Gollum
                            Gollum
            
                        member
     
            1268 posts
        525 snarkmarks
        Registered: 
    Oct 26th 2001
                    Occupation: Student
                            Location: Oxford, England
             
                
                        Does anyone know a good way to force images to load after other content?  I'm not having much luck so far :sad:
                                    
             
        
            
            
                                     
                                
                    
                        Re: Website feedback
                        Posted by Gollum on 
    Mon Mar 6th 2006 at 9:50am
                     
                    
                 
                
            
            
                
    
                    
                             Gollum
                            Gollum
            
                        member
     
            1268 posts
        525 snarkmarks
        Registered: 
    Oct 26th 2001
                    Occupation: Student
                            Location: Oxford, England
             
                
                        Morphine-- thanks for the screen grabs.  The problem seems to be much more pronounced under FF1.07 than FF1.5.
In case anyone can see how to fix this, here is the relevant Javascript:
/*==========================================
	The functions below deal with text-size
*/
function textsize()
{	
	var max = 5;
	var min = 1;
	var x = document.getElementById("main");
	var y = document.getElementById("nav");
	x.style.fontSize = '1em';
	recallSize();
	var as=document.getElementsByTagName("a");
	for (i=0;i<as.length; i++) {				//loops through all anchors + assigns onclick by class
		if (as.item(i).className == "text_plus"){
			as[i].onclick=function()
			{
				var textSize = parseFloat(x.style.fontSize.replace('em', ''));
				textSize += 0.2;
				if (textSize > max) (textSize = max);
				x.style.fontSize = textSize + 'em';
			}
		}
		if (as.item(i).className == "text_minus"){
			as[i].onclick=function()
			{
				var textSize = parseFloat(x.style.fontSize.replace('em', ''));
				textSize -= 0.2;
				if (textSize < min) (textSize = min);
				x.style.fontSize = textSize + 'em';
			}
		}
		if (as.item(i).className == "text_reset"){
			as[i].onclick=function()
			{
			x.style.fontSize = 1 + 'em';
			}
		}
	}
}
function recallSize() {
var x = document.getElementById("main");
var textSize = 1 + "em";
var cookie = readCookie("Badminton-guide-textSize");
if (cookie) {	
	textSize = cookie
	x.style.fontSize = textSize;
	}
}
function getSize() {
var x = document.getElementById("main");
var textSize = x.style.fontSize;
return textSize;
}
                                    
             
        
            
            
                                     
                                
                    
                        Re: Website feedback
                        Posted by Orpheus on 
    Mon Mar 13th 2006 at 1:35pm
                     
                    
                 
                
            
            
                
    
                    
                             Orpheus
                            Orpheus
            
                        member
     
            13860 posts
        2024 snarkmarks
        Registered: 
    Aug 26th 2001
                    Occupation: Long Haul Trucking
                            Location: Long Oklahoma - USA
             
                
                        1st test:
After I cleared my history, my temp internet files and my cookies (a process fraught with grief considering replacing it with 56k will take ages)
The page, upon clicking the link:
30 seconds of white.
25-35 seconds of page loading with no scrolling available.
10 seconds of last minute loading.
Total time from link click to completion approx. 1 minute.
will delete everything and do a second attempt. My connection is 4.2k
[edit#1]
Second test:
10 seconds of white page.
33 seconds of page loading with no scrolling available.
3 seconds of last minute stuff.
will do one final testing. Strangely enough, Snarkpit loads and scrolls smoothly with everything deleted/cleared even though the page is loading all the avatars and images on the given page (this page).
[edit#2]
Final test:
8 seconds of white page.
25 seconds of page loading with no scroll available.
3 seconds of last minute stuff.
Yes, before anyone asks, I waited for Snarkpit to complete before I clicked the link so no stray bits of bandwidth will be wasted. (bandwidth, what a stupid concept when used in conjunction with 56k :sad: )
Hope that helps Mike.
Hopefully, you can get a few more 56k users to test since I do not trust my connection.
                                            
                        
The best things in life, aren't things.
                                    
             
        
            
            
                                     
                                
                    
                        Re: Website feedback
                        Posted by Gollum on 
    Mon Mar 13th 2006 at 5:53pm
                     
                    
                 
                
            
            
                
    
                    
                             Gollum
                            Gollum
            
                        member
     
            1268 posts
        525 snarkmarks
        Registered: 
    Oct 26th 2001
                    Occupation: Student
                            Location: Oxford, England
             
                
                        Thanks Orph, that's really helpful :smile:
It's bad news, of course :sad: Those load times are far too long, and indicate that the images loading does not work as I had intended in Internet Explorer (it appears to work in FF).
I will have another go soon....ish.
Thanks Jon.  Hopefully next time I'll get it right!
                                    
             
        
            
            
                                     
                                
                    
                        Re: Website feedback
                        Posted by Gollum on 
    Mon Mar 13th 2006 at 6:19pm
                     
                    
                 
                
            
            
                
    
                    
                             Gollum
                            Gollum
            
                        member
     
            1268 posts
        525 snarkmarks
        Registered: 
    Oct 26th 2001
                    Occupation: Student
                            Location: Oxford, England
             
                
                        It's not entirely based on your experiment.  I had an existing suspicion that this would happen, based on a test with a very large image (3Mb).
Your evidence is sufficient to confirm my suspicion, at least for now.
But, of course, more data points would always be welcome :smile:
                                    
             
        
            
            
                                     
                                
                    
                        Re: Website feedback
                        Posted by Gollum on 
    Mon Mar 13th 2006 at 7:03pm
                     
                    
                 
                
            
            
                
    
                    
                             Gollum
                            Gollum
            
                        member
     
            1268 posts
        525 snarkmarks
        Registered: 
    Oct 26th 2001
                    Occupation: Student
                            Location: Oxford, England
             
                
                        Ooooh!
Looks interesting :smile: This might save me some testing hassle.
                                    
             
        
            
            
                                     
                                
                    
                        Re: Website feedback
                        Posted by Crono on 
    Wed Mar 15th 2006 at 3:42am
                     
                    
                 
                
            
            
                
    
                    
                             Crono
                            Crono
            
                        super admin
     
            6628 posts
        700 snarkmarks
        Registered: 
    Dec 19th 2003
                            Location: Oregon, USA
             
                
                        Making something translucent is easy ... I used to use it on drop down menus. And it works in IE too ... but my menus didn't :\
Let's see here ... Yep. Can't find it.
I'll keep looking, but I know I've done this before and actually made it transparent. Frames and everything were visible and the transparency could be set to whatever opacity. I'm sure I used some JS too though. It's been a long time. :sad:
                                            
                        Blame it on Microsoft, God does.
                                    
             
        
            
            
                                     
                                
                    
                        Re: Website feedback
                        Posted by Gollum on 
    Wed Mar 15th 2006 at 9:31am
                     
                    
                 
                
            
            
                
    
                    
                             Gollum
                            Gollum
            
                        member
     
            1268 posts
        525 snarkmarks
        Registered: 
    Oct 26th 2001
                    Occupation: Student
                            Location: Oxford, England
             
                
                        Apart from the fix for IE, my method of "fake translucency" uses only CSS (and simple CSS, too).
On the other hand, it does require more images than genuine transparency would need.  But it also gives more control over the effect you want.
                                    
             
        
            
            
                                     
                                
                    
                        Re: Website feedback
                        Posted by Gollum on 
    Fri Mar 17th 2006 at 10:06pm
                     
                    
                        
                        Posted 
    2006-03-17 10:06pm
                     
                 
                
            
            
                
    
                    
                             Gollum
                            Gollum
            
                        member
     
            1268 posts
        525 snarkmarks
        Registered: 
    Oct 26th 2001
                    Occupation: Student
                            Location: Oxford, England
             
                
                        Update: problem fixed :smile: The images now load in the background without slowing down the text content.
(Note that I haven't updated the online version.)