Hi,
What's the best way to make the text on all Run Button objects wrap?
I see the css file has wordwrap and this works if I add it on each form, but I want this applied across my whole nuBuilder instance.
Putting $(':button').addClass('wordwrap'); in the header does not work.
Steve
Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums and content available only to registered users.
Run Button wordwrap
-
- nuBuilder Team
- Posts: 4304
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 71 times
- Been thanked: 445 times
- Contact:
Re: Run Button wordwrap
In the header, add this style (login again after you have added the code)
Code: Select all
<style>
.nuButton, .input_button {
white-space: normal;
}
</style>
-
- Posts: 21
- Joined: Tue Oct 16, 2018 12:21 am