Hi evryone this is my first post on this site
i am now busy making my website responsive but i come across a lot of problems and this is one of them :
in my original css i have this line of code:
.nav li:first-child {
list-style: none;
}
now in my @media element i wanna eliminate this property so that this element is back and i tried this :
@media (max-width: 940px) {
.nav li:first-child {
list-style: url("../images/listimage.png"); /* becaus i have this image as liststyle in my other elements */
}
but it doesn't work , if this isn't enough information to solve the question please tell me , i will post screenshots if nescessary
Well if you want to use an
Well if you want to use an image this is the proper code:
list-style-image:url('http://wwww.your link.com');
Hope this helps
helldog2004 wrote: Well if
Well if you want to use an image this is the proper code:
list-style-image:url('http://wwww.your link.com');
Hope this helps
it will surely help he is right