• Hello, a couple of questions:

    – is it possible to change Labels text? I’d like to use italian words for Days, Minutes, etc.

    – is it possible to change digits sizes? In mobile they are far too big.

    Thanks and compliments for the nice plugin! 🙂

Viewing 1 replies (of 1 total)
  • Plugin Support Fotis

    (@markwaregr)

    Hi there,
    you can open assets/js/ep-scripts.js and replace

    	var clock = $clock.FlipClock(countdown, {
    			clockFace: clockface,
    			autoStart: false,
    			showSeconds: show_seconds,
    			callbacks: {
    				stop: function() {
    					message.html(message_text)
    				},
    			}
    		});

    with

    	var clock = $clock.FlipClock(countdown, {
    			clockFace: clockface,
    			autoStart: false,
    			showSeconds: show_seconds,
    			language: 'it',
    			callbacks: {
    				stop: function() {
    					message.html(message_text)
    				},
    			}
    		});

    Open the default editor and then navigate to the /plugins/elements-plus/ folder to find the file.

    2. Try this

    @media(max-width:768px){
    .elementor-widget-ep_flipclock .flip-clock-wrapper ul li a div div.inn{
     font-size:20px;   
    }
    }

    in your custom CSS box to change the size in mobile.

    • This reply was modified 7 years, 10 months ago by Fotis.
Viewing 1 replies (of 1 total)

The topic ‘FlipClock Plus!’ is closed to new replies.