vote up 2 vote down star

I made a css menu with css sprites but with sprite we can't add alt="text" to link to access if images isdsabled. any solution for this ?

flag

43% accept rate

3 Answers

vote up 2 vote down check

You can create a 1x1 transparent pixel image and put it within the div that has the sprite. For example:

<style type="text/css">
#linkContainer {background:url(images/sprite.gif) 0 50 no-repeat}
//sprite selection width/height, set cursor to pointer so users know its a link
#linkContainer img {width:50px;height:25px;cursor:pointer}  
<style>
<div id="buttonContainer"><img src="pixel.gif" alt="Your alt text"></div>
link|flag
i'm using sprite on drop down menu cssgirl.com/examples/… this menu is not accessible if images is disabled by user – Jitendra Oct 22 at 17:49
If images are disabled, the 1x1 clear pixel image will do it's job. The purpose of the pixel image is to only produce an alt tag if a user has images disabled (it's transparent, so it won't be "seen" anyway). I tested your site with images disabled, the drop down menu still shows up if you know where to hover over. Having the pixel image in place will give users a visual que to where the actual menu is. – qwertypants Oct 23 at 13:47
but in that case we need to remove link text which is useful for SEO and screen reader <a title="my link" href="myurl.html">link text</a> – Jitendra Nov 15 at 10:21
vote up 5 vote down

Don't use sprites for content images. They depend on being background-images in the presentation layer (CSS). Put your content in the content layer (the HTML).

link|flag
vote up 0 vote down

Why would you need alt texts in a menu?

link|flag
for accessibility reason if images is disabled navigation should be accessible – Jitendra Oct 1 at 14:28
1  
Does that mean your menu consists entirely of background images? No text? – Manni Oct 1 at 14:34
No i have link text but text is hidden by css text-indent property – Jitendra Oct 1 at 14:37
1  
But people without screen readers are not – David Dorward Oct 1 at 14:47
2  
I get the feeling that alt-text is the last thing you should worry about. – Manni Oct 1 at 14:54
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.