I have this html code for a page. My buttons appear at the center bottom.
I would like them to appear elsewhere such as bottom corners.
<div class="carousel-inner">
<img src="{{=URL('static','images/1.jpg')}}" alt="1" width="1100" height="400">
<div class="carousel-caption">
<div class="carousel-btn">
{{=A('Proceed', _class='btn btn-large btn-info',_style="font-family: 'Audiowide';font-size: 22px; font-size:1em; border-style: solid white; background:#26e45c; color: black; padding:7px 7px; border-radius:30px", _href=URL('exercise page'))}}
</div>
<div class="carousel-btn">
{{=A('Review', _class='btn btn-large btn-info',_style="font-family: 'Audiowide';font-size: 22px; font-size:1em; border-style: solid white; background:#d60506; color: black; padding:7px 7px; border-radius:30px", _href=URL('start_page'))}}
</div>
</div>
</div>