How can I format text to display in one line only?

I want it to be like this

1 Like

https://quick-start-999eac94.myshopify.com/

password: nayldu

1 Like

Hey @niceeee

Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code in the bottom of the file above tag

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

@niceeee

Please Add the following CSS code to your assets/base.css bottom of the file.

@media (max-width: 768px) {
.countdown-banner-richtext-template--19771697299756__5125ca9a-2935-42f3-98dd-d92f57acf886-template--19771697299756__5125ca9a-2935-42f3-98dd-d92f57acf886-16886249843c72cee7-0 {
    font-size: 15px !important;
    white-space: nowrap !important;
}
}

Thanks!

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottom of the file:
@media (max-width:500px){
.countdown-banner-richtext-template--19771697299756__5125ca9a-2935-42f3-98dd-d92f57acf886-template--19771697299756__5125ca9a-2935-42f3-98dd-d92f57acf886-16886249843c72cee7-0 {
    font-size: 12px;
}
}