Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I remove the numbers in ol?

Tags:

html

css

Please excuse me for the lack of jargon!

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 that is preventing my page from rendering properly.

enter image description here

like image 556
Aakash Patel Avatar asked Nov 18 '16 05:11

Aakash Patel


1 Answers

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>
 
like image 177
Razia sultana Avatar answered Sep 25 '22 03:09

Razia sultana