I'm having trouble removing a number from html

0

I'm having trouble removing a html numbering already tried everything and nothing the slide looks like this:

And how would I change from img to text?

HTMLcode:

<!doctypehtml><html><head><metacharset="utf-8">
<title>Documento sem título</title>
        <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <title>Secure Elo Bosting</title>
    <link rel="stylesheet" href="css/estilos.css">
    <link rel="stylesheet" href="css/style.css">
    <link rel="stylesheet" href="css/font-awesome.css">
    <meta name="viewport" content="width=device-width,initial-scale=1"/>
    <script src="js/jquery-3.2.1.js"></script>
    <script src="js/main.js"></script>
    <script src="js/jquery-3.1.0.min.js"></script>
    <script src="js/jquery.flexslider.js"></script>
    <script src="js/mains.js"></script>
</head>

<body>
      <section id="slide">
        <div class="ban">
    <div class="flexslider">
        <ul class="slides">

            <li>
                <img src="img/1.jpg" >

            </li>

            <li>
                <img src="img/2.jpg" >
            </li>

            <li>
                <img src="img/3.jpg" >

            </li>

        </ul>
    </div>

    </div>

    </section>
</body>
</html>

ss code:

.flexslider{
    height: 100%;
    max-width: 800px;
    margin-bottom: 30px;
    margin: 50px auto;
    display: flex;
    flex-direction: column;

    position: relative;
}

.flexslider ul li {
list-style: none;
}

.slides,
.slides li,
.slides li img{
    width: 100%;
}

.slides li{
    margin-bottom: -5px;
}



/* RESPONSIVE ========== */


@media screen and (max-width: 600px){

    .flexslider{
        width: 100%;
        border-radius: 0px;
        border: none;
    }

    .slides li{
        overflow: hidden;
    }

    .slides li img{
        width: 600px;
    }


}

@media screen and (max-width: 450px){
    .slides li img{
        transform: translateX(-90px);
    }


}
    
asked by anonymous 27.12.2017 / 19:05

1 answer

1
So, man, I'm new here and I know very little about CSS html and such, but I think I can help you. Lists automatically add that number to it, but with css you can style the list. To leave the list without numbers is enough in the part of the css of your code (.slides li) you add the attribute "list-style-type = none;". In the link below in the css documentation you can find other ways to style the list link

    
27.12.2017 / 19:48