How to adjust title to be written in 1 line in mobile

Hello guys, how can I adjust this title to be written in 1 line in mobile?

Hi @NikosBat ,

You can follow the steps here:

Step 1: Shopify admin > Online store > Customize: https://prnt.sc/XQ6IDB99kUCd
Step 2: From the left menu > Theme settings > Open Custom CSS: https://prnt.sc/ypQ7nly2wv27
Step 3: Copy the code below and paste it there

Here is the code for step 3:

@media screen and (max-width: 768px){
.multicolumn-card__info > h3 * {
    font-size: 18px;
}
.multicolumn-card__info {
    padding-inline: 0 !important;
}
}

Here is the result:

Please let me know or mark solution if it works!

Best,

Daisy

1 Like

Thanks DaisyVo that solved my problem