Site Owners Forums - Webmaster Forums

Site Owners Forums - Webmaster Forums (http://siteownersforums.com/index.php)
-   HTML / DHTML (http://siteownersforums.com/forumdisplay.php?f=7)
-   -   Background Images as List Bullets (http://siteownersforums.com/showthread.php?t=59730)

davikerkrish 09-06-2012 04:32 AM

Background Images as List Bullets
 
ul {list-style: none}
ul li {
background-image: url("path-to-your-image");
background-repeat: none;
background-position: 0 0.5em;
}

eswari 10-10-2012 12:03 AM

You can use try this also,

li {
list-style: none;
background: url(bullet.gif) no-repeat left center;
padding-left: 20px;
}

davikerkrish 10-22-2012 05:26 AM

some of the web browser not supporting this one.

abhirampathak3 12-04-2012 11:43 PM

Also you can try to do with this

#content ul.bullet li {
list-style-type: none;
text-align: center left;
background-image: url(../images/ex-list-bullet.PNG);
background-position: center left;
background-repeat: no-repeat;
padding: .3em 0 .2em 1.1em;
}

#content ul.bullet {
margin: 0 0 .3em -.5em;
}


All times are GMT -7. The time now is 08:28 PM.


Powered by vBulletin Copyright © 2020 vBulletin Solutions, Inc.