I'm trying to get a portfolio site together, and I need help in using the flexslider. I tried using it, but there is something wrong in my CSS part that is preventing my page from rendering properly.

I'm trying to get a portfolio site together, and I need help in using the flexslider. I tried using it, but there is something wrong in my CSS part that is preventing my page from rendering properly.

Try it:
ol li{
list-style-type: none;
color: blue;
}
<ol>
<li>1.1</li>
<li>2.2</li>
<li>3.3</li>
<li>4.4</li>
</ol>
Use
ol li{
list-style: none;
}
or
ol li{
list-style: none!important;
}
You can achieve this using CSS:
ol li{
list-style-type: none;
}
<ol>
<li>1</li>
<li>2</li>
<li>3</li>
</ol>