Tiny-icons and the Navbar?

Jul 10, 2007 15:27

Edit: Problem fixed, thank you to everyone who helped :D

I have just changed the little userinfo/comm icons on my LJ and for some reason they aren't showing up in my navbar?

I followed the code instructions to the letter, and they are ok in my journal itself... the test pageI see three little cars, other people see one car and two tools ( Read more... )

security icons, css, navbar

Leave a comment

babyelefant July 10 2007, 11:24:26 UTC
Use the !important hack like in the code below and it should show up in the nav bar

.ljuser img {
width: 0;
height: 0;
background-repeat: no-repeat;
background-color:transparent;
/* so that IE users will still see an image */
background-image: url(http://i73.photobucket.com/albums/i217/green-wing/graphics/bullets/SN5-Metallicar.gif) !important;
padding: 10px 34px 0 2px !important;
}

.ljuser img[src="http://stat.livejournal.com/img/userinfo.gif"] {
background-color:transparent;
background-image: url(http://i73.photobucket.com/albums/i217/green-wing/graphics/bullets/SN5-Metallicar.gif) !important;
padding: 10px 34px 0 2px !important;
}

.ljuser img[src="http://stat.livejournal.com/img/community.gif"] {
background-color:transparent;
background-image: url(http://i73.photobucket.com/albums/i217/green-wing/graphics/bullets/24-tools.png) !important;
padding: 24px 24px 0 2px !important;
}

Reply

green_wing July 10 2007, 12:39:00 UTC
That worked!!! :D
Thank you so much, I figured there was something missing, I just didn't know what it was *LOL* ;)

Reply


Leave a comment

Up