I'm currently working on a project where the requirement is to use flipclock.js to create an HH:MM counter.
I'm using the HourlyCounter
clock face. Does anyone know how I could hide the seconds part?
Thanks in advance!
After using @Rahul's css, i've gotten the following:
I've got an image of the inspected element if that helps:
Note: Since you dont provide any code/demo Im taking reference from http://flipclockjs.com/
here you go...
you can use below code, this will hide seconds part
.flip-clock-divider.seconds , .flip-clock-divider.seconds ~ .flip.play {
display: none;
}
then you may need to adjust width accordingly like
.header .clock{
width: 300px;
}