I have been working on my website most of the day and I have run into a problem, where I wish to remove the standard bullet point from my un ordered list and add an image instead. I have added an image but the standard bullet points are still there and the image is massive, so I am wondering how would i resize the image and remove the standard bullet points.
I have research the internet for a solution and even on this website, where nothing seems to be working
HTML
<div class="rank-info">
                        <h4>Available Ranks</h4>
                        <ul>
                            <li>Test</li>
                            <li>Test</li>
                            <li>Test</li>
                            <li>Test</li>
                            <li>Test</li>
                            <li>Test</li>
                            <li>Test</li>
                            <li>Test</li>
                            <li>Test</li>
                            <li>Test</li>
                            <li>Test</li>
                            <li>Test</li>
                            <li>Test</li>
                            <li>Test</li>
                        </ul>
                        </div>
CSS
.rank-info {
  padding: 0 0 2em;
}
.rank-info h4{
    color:#626262;
    font-size:1.4em;
      font-family: 'Montserrat Alternates', sans-serif;
    margin: 0 0 0.3em;
}
.rank-info p a{
    text-decoration:none;
    color: #9A9898;
}
.rank-info p a:hover{
    color: #ff0000;
}
.rank-info ul{
    color: #9A9898;
    margin-left: 25px;
    list-style-image: url(../images/580b585b2edbce24c47b291a.png);
}
.rank-info li:before {
    content:"ยท";
    font-size:100px;
    vertical-align:middle;
    line-height:20px;
}
Here is a screenshot of what my problem is:
Than you in advance and any help appreciated