I am having strange problem, whenever my site is loaded for the first time in the browser, its jquery and slider doesnt work at all…….. then when i refersh the page it loads it properly….
I am using Firefox latest 3.6.8 version
CSS is loaded before jquery and slider scripts
here is the link for website link text
I fixed the button positioning with 2 solutions
- One was to use % in positioning like left:90%
- Other i found by checking the original easy slider 1.5 css file which was to use a container to display all the content within and container will have same width as the images in the slider…..
hope it helps others
I had no difficulty viewing your site in Firefox version ‘3.6.8’ without a refresh? The slider appears to function correctly, however, with fresh eyes I did notice some things in the page source that you might wish to check, especially point 1.:
[EDIT] The JavaScript block within the ‘Head’ tag is missing closing semicolons (‘;’) at the end of the first four ‘var’ lines:
[EDIT] Also, it’s advisable to include JavaScript in ‘CDATA’ or ‘Character Data’ sections:
More info: here and here.
[EDIT] Finally, notice the variable ‘
brow_ver‘ is declared in the script, but on the following line a variable ‘browser‘ is referenced?The ‘
&’ character entity reference should be used instead of ‘&’ in the ‘title’ tagOne of the ‘Meta Tags’ is missing a closing ‘/’.
[EDIT] The conditional comment ‘
<![if !(IE 6)]>‘ should be ‘<!--[if !(IE 6)]>‘ and ‘<![endif]>‘ should be ‘<![endif]>-->‘[EDIT] The UTF-8 encoding includes and encompasses all of US-ASCII characters, so in the meta tag consider using the following ‘Content Encoding’:
content="text/html; charset=UTF-8"instead ofcontent="text/html; charset=us-ascii"Also FYI: the ‘-‘ and ‘+’ navigation buttons for the slider are not positioning correctly. Please see image reference below. This might not be apparent on your screen… try a higher resolution with the browser set to full screen to replicate it.
[EDIT] Just for others reading this… I notice you have fixed the ‘-‘ / ‘+’ navigation positioning by using ‘%’ instead of ‘px’ in the CSS. So for example:
instead of…
The same goes for the ‘Previous’ nav button.
Site Screenshot of incorrect navigation buttons positioning http://img59.imageshack.us/img59/8443/gulzarchildcarecom.jpg
The best of luck with the site… it looks good! 🙂