How do I style my carousel dots to become like this ?
Here is what I have now.
Here is how I style it.
.slick-dots { position: absolute; bottom: -45px; list-style: none; display: block; text-align: center; padding: 0; width: 100%; }
.slick-dots li { position: relative; display: inline-block; height: 20px; width: 20px; margin: 0 5px; padding: 0; cursor: pointer; }
.slick-dots li button { border: 0; background: transparent; display: block; height: 20px; width: 20px; outline: none; line-height: 0; font-size: 0; color: transparent; padding: 5px; cursor: pointer; }
.slick-dots li button:hover, .slick-dots li button:focus { outline: none; }
.slick-dots li button:hover:before, .slick-dots li button:focus:before { opacity: 1; }
.slick-dots li button:before { position: absolute; top: 0; left: 0; content: "•"; width: 20px; height: 20px; font-family: "slick"; font-size: 6px; line-height: 5px; text-align: center; color: black; opacity: 0.25; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.slick-dots li.slick-active button:before { color: black; opacity: 0.75; }
HTML
<div class="row slick">
// a bunch of images
</div>
this is my example
Here is how I would do it :
I will design every little pieces using Photoshop. that way I can make it exactly like what you described.
I will create 2 small circle, with 20 px by 20 px
Save them as .PNG files and load them back into .CSS file Then I'll apply the
background-image: url("blue_dot.png");
to the blue one, andbackground-image: url("black_dot.png");
to the black one.If needed, adjust your
width
andheight
to fit your needs.I threw this together which does it purely with HTML and CSS: http://jsfiddle.net/kajrttgv/2
I have also tried to create some dots :p. JSFiddle: http://jsfiddle.net/Thaillie/o8q56tga/
Here you go. :)