I want to create a slide with two buttons below. But I did get the two buttons on the bottom side side, but the slide does not work when I try to move to slide 2, 3.
<ion-slides id="slide">
<ion-slide style="background-color: white">
<h2>Slide 1</h2>
</ion-slide>
<ion-slide style="background-color: white">
<h2>Slide 2</h2>
</ion-slide>
<ion-slide style="background-color: white">
<h2>Slide 3</h2>
</ion-slide>
</ion-slides>
<ion-content >
<button id="Entrar">Entrar</button>
<button id="registrar">Registar</button>
</ion-content>
css code
#Entrar {
list-style-type: none;
margin-top: 620px;
height: 50px;
width: 188px;
float: right;
font-size: 25px;
background-color: rgb(0, 89, 255);
}
#registrar{
list-style-type: none;
margin-top: 620px;
display: inline-block;
height: 50px;
width: 187px;
background-color: rgb(0, 89, 255);
font-size: 25px;
}