views:

181

answers:

3

Hello,

Iam working on a website and I dont have any clue why the tabs doesnt work when I upload the website. Because when I view the website normal it does work perfectly. By the way: The tabs are working with a jquery script.

This is the website URL: http://bmvisuals.poshh.nl/

Greetings.

Edit: I mean some of the tabs doesnt appear.

+8  A: 

Your About me tab does not show up because your server is case sensitive.

Aboutme.jpg != Aboutme.JPG

You should check out CSS Sprites. There is a flicker when you hover over a tab (the first time) because the browser has to load the hover image. With CSS Sprites an image map is used and all the images are loaded at once so the hover is seamless.

As an aside, your site does not scroll vertically. When my window is smaller than your site, the bottom gets cut off and there is no way for me to see it.

Emily
Thank you so much!Also thank you about telling me the CSS sprites.The reason why I dont let the window scroll is that, when I do that my whole site fails. Look at this: http://img218.imageshack.us/img218/8053/failkle.png
Bas
A: 

Firstly, nice site. Secondly your tabs are totally borked for me. I am using Linux Ubuntu and Firefox 3. Not sure about the fix though. Just thought I would mention it.

uriDium
A: 

Using Firebug, I see some resources give a 404 error:

On a side note, the page doesn't work if javascript is disabled. I would suggest using the noscript tag to show a message saying javascript is required. The other option is to make the page work without javascript.

Buddy
I do use firebug but I don't get any clue about it :SWho has disabled javascript now a days?
Bas
Under the "Net" tab in Firebug it will show all of the requests Firefox makes for that page.I have javascript disabled. :) I use the NoScript plugin for Firefox for two reasons; it can prevent some types of attacks (like cross site scripting), and it prevents webpages from doing random crazy things. Most sites work just fine without javascript.A minority of people have javascript disabled, so using the noscript tag should be good enough.
Buddy