Add nowrap to a column January 10, 2020, 11:46:57 PM Hello,I have a specific column that I don't want the text to split to a next line.How can I do to add a nowrap or something similar so it stays on the same line?Regards,Carlos Quote Selected
Re: Add nowrap to a column Reply #1 – January 11, 2020, 04:28:59 PM @zolwito please use the bootstrap class text-nowrap to do that. You can read more about bootstrap classes for text over here. Quote Selected
Re: Add nowrap to a column Reply #2 – January 11, 2020, 08:14:20 PM Quote from: willvin – January 11, 2020, 04:28:59 PM@zolwito please use the bootstrap class text-nowrap to do that. You can read more about bootstrap classes for text over here.I had to change the display Type to Custom and then add the text-nowrap on the div and it worked. <span class="text-nowrap"><?php echo $data['program']; ?></span>But is that the way to do it? Or I can add the class text-nowrap somewhere else?Thank you,Carlos Quote Selected
Re: Add nowrap to a column Reply #3 – January 12, 2020, 03:41:53 PM @zolwito it is the right way. Quote Selected