| |||||||
| Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics. |
![]() |
| | LinkBack | Thread Tools |
| | #1 (permalink) |
| NamePros Member | text-indent: -9999px; Question Hello, I'm trying to code a menu item where it shows a background image. I was told that it's best to have text in your list, and then do a text-indent in the .css file to shift the text all the way off the page. (Instead of doing a list of images.) The problem I have is that when I do the text-indent, the whole box (text + background image) disappear. Here's the html code: <div id="menu"> <ul> <li id="menu_space1"></li> <li id="menu_about"><a href="about.html">About</a></li> <li id="menu_space2"></li> <li id="menu_services"><a href="services.html">Services</a></li> <li id="menu_space3"></li> <li id="menu_portfolio"><a href="/portfolio">Portfolio</a></li> <li id="menu_space4"></li> <li id="menu_contact"><a href="contact.html">Contact</a></li> </ul> </div><!--end menu--> Here's a sample of the .css trying to shift the word 'About' off the screen, showing only the background image: #menu_about { display: block; width: 65px; height: 54px; background-image: url(web_images/about.jpg); <!--this is the background picture--> background-repeat: no-repeat; background-position: 0 0; text-indent: -9999px; } Any insight as to why this is happening and how to fix it would be appreciated. Thank you, Raydar |
| |
| | #2 (permalink) |
| i love automation | If you want to make a menu from <ul> or <ol>, You should remove list image with Code: ul {
list-style:none;
margin:0;
padding:0;
}
Code: ul a {
backgroung-attachment:scroll;
background-image:url(...gif);
background-repeat:repeat;
display:block;
}
Code: ul li {
margin:0;
padding-left:1em;
}
__________________ Xrvel | Various online tools | Free Proxy List | Hidden Proxy Partai Golkar | Noomle works : Las Vegas Airfare |
| |
| | #4 (permalink) |
| i love automation | Remove the text : (delete your text-indent style first) Code: #menu_about a {
margin-top:9999px;
}
Code: #menu_about a {
visibility:hidden;
}
__________________ Xrvel | Various online tools | Free Proxy List | Hidden Proxy Partai Golkar | Noomle works : Las Vegas Airfare |
| |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| |