How to increase the size of the arrows on the twitter carousel bootstrap navigation

How can I increase the arrow size of the navigation icons for twitter found here?

http://getbootstrap.com/javascript/#carousel

I tried increasing the width / height property in the following css to 70px from 30px, but this did not work

prev, .carousel-control .icon-next {
width: 70px;
height: 70px;
margin-top: -15px;
margin-left: -15px;
font-size: 30px;
+4
source share
1 answer

it's a font, so all you have to do is make it bigger

eg:

.carousel-control .icon-prev, 
.carousel-control .icon-next {
    font-size: 100px;
}

then use margin-topto adjust the horizontal position, for example (in case 100pxc font-size) usemargin-top: -70px;

enter image description here

+5
source

All Articles