millis() related question on a 16x2 RGB LCD screen

Another way to do it is to write a blank over the second digit if the number is less than 10:

      lcd.print(countdown);
      if (countdown < 10)
          lcd.print(" ");