Hi, I have an unordered list, where I have a section where theres a list, as shown in this code
<li id = "project"> My Projects </li>
If the project id also matches
#project
{
list-style-image:url(link.png);
position:relative;
left:20px;
top:100px;
}
I am wondering how I can make this link.png available. I found an example when you click on a picture and it enters the link, but I donβt understand what to do, because it is inside an unordered list (I donβt know any Javascript, by the way, I just recently started to relearn html and CSS)
source
share