Divi Countdown Timer: Hide First Number in Remaining Days

Last modified Sep 10, 2020
Difficulty Beginner
Language CSS
Category

The Divi Countdown Timer “Days” field has three zeros and no built-in option for changing or removing the field. In this guide, you will learn how to remove the leading zero in the Countdown module.

The Countdown Timer module adds an animated timer that counts down to a specific date that can be used for coming soon landing page, maintenance mode pages, and creating urgency on a sales page.

Follow these steps to remove an unnecessary leading zero from the day’s section.

Tutorial Requierments

  • Copy and Paste CSS Code Snippet – The code for this tutorial was created and tested by our design team.
  • Basic knowledge of how to add CSS to WordPress – If you are new to Divi follow this tutorial to learn how to add CSS to your site.

 

The code works as follows: first we catch the first character in the days section, and change the font size to 0px.

 

 

 

Even if the font size is 0 the text still has line-height. So we set vertical-align to top so it doesn’t affect the height of the section.

 

 

CSS

.et_pb_countdown_timer .section.days p.value:first-letter {    
font-size: 0px;   
vertical-align: top 
}

 

Does this snippet (still) work?

Please let us know in the comments if everything worked as expected. We have tested this code with the Version: 4.5.3 of the Divi Theme.
If you think this code saved you time, we will be happy to receive a comment!

____

License: This snippet contains code from the Divi Theme, copyright https://elegantthemes.com, modified by Divi Space, November 13, 2019. Licensed under the GNU General Public License, no warranty; click here for details.

Your Comments

17 Comments

  1. Moni

    Works like charm. (Divi 4.24.2)
    Thank you!

    Reply
  2. Stefan

    Still works with Divi 4.23.1
    Cause I don’t use countdown timer often, I put the CSS in the module CSS field.
    THANK YOU
    Stefan

    Reply
  3. Stacey Jessop

    Worked perfect thank you!

    Reply
  4. Jeannie

    This still works great. Thank you!

    Reply
  5. Bill

    It worked for me. Thanks!

    Reply
  6. jeason

    Thanks Anna Kurowska, your message also helped me a lot ! Thanks

    Reply
  7. antoine avril

    Works like a charm, thanks a lot!

    Reply
  8. Anna

    Another solution would be to add this code under Theme Options / Integration / area:

    jQuery(function($){
    	
    	var olddays = $('.et_pb_countdown_timer .days .value');
    	
    	olddays.each(function(){
    		var oldday = $(this);
    		oldday.after(oldday.clone());
    		oldday.next().wrap('');
    	}).hide();
    	
    	// Update the clone each second, removing the trailing zero
    	(function update_days() {
    		olddays.each(function(){
    			var oldday = $(this);
    			var days = oldday.html();
    			if (days.substr(0,1) == '0') { days = days.slice(1); }
    			oldday.next().find('.value').html(days);
    		});
    		setTimeout(function(){ update_days(); }, 1000);
    	})()
    
    });
    

    🙂 Kind regards!

    Reply
  9. Alex

    It doesn’t seem to work on phones (iPhones specifically, haven’t tested on Androids) – only on desktop.

    I inserted the CSS code on the Custom CSS Box in the Divi Theme Options dashboard.

    Any advice?

    Reply
    • Anna Kurowska

      Hi Alex, I just tested CSS and it worked on the iPhone for me. Please make sure CSS is added and if it doesn’t work, share a link to your page.

  10. Yitshak KALFON

    still works – thanks

    Reply
  11. Ando

    Hi, I dropped that bit of CSS into, Countdown Timer Settings > Advanced > Main Element … and received a couple of errors.

    The first error comes right after the first curly bracket and says: Expected RBRACE.
    The second error comes right after the last curly bracket and says: Unexpected token’}’.

    Any help much appreciated!

    Reply
    • Anna Kurowska

      Hi Ando, that’s because you are adding the CSS to the module, it won’t work in that case.
      Try adding CSS to Custom CSS Box in the Divi Theme Options dashboard, Divi Builder Page Settings of an individual page or Divi child theme style.css file. You can find more info about adding CSS here: https://wpzone.co/tutorials/5-ways-to-add-css-to-divi/

  12. Christian Mauerer

    WORKS fine but NOT in firefox

    Reply
  13. Christopher

    Yes it still works & that was easy, thank you!

    Reply
  14. Beth

    Thank you!! =)

    Reply

Submit a Comment

Your email address will not be published. Required fields are marked *

Receive notifications about our new blog posts.

Next snippet Create Call to Action Button Below Mobile Hamburger Menu
Previous snippet Divi Mobile: Collapse Submenus With Clickable Parent Menu Items