You don’t give a link to your site, so I can’t test it, but on my site, the “Add to Cart” buttons have a class of “tinvwl-txt,” so it works to add the following CSS:
.tinvwl-txt {
white-space: nowrap;
}
That approach means you don’t have to add a new class to the element. The downside on my site that I suspect may also affect yours is that it will cause other elements in the table to wrap.
Alternatively, you could use the same class to change the font size:
.tinvwl-txt {
font-size: small; /* or whatever size you want... */
}
Thread Starter
Oclair
(@oclair)
Hey thanks soo much @linux4me2 that’s a real huge help!
I actually used this code instead because other elements would also move due to an effect associated with the buttons!
.tinvwl-table-manage-list{
white-space: nowrap;
}
Happy Easter!
OC