Welcome to the nuBuilder Forums!

Register and log in to access exclusive forums and content available only to registered users.

Text area radius

Questions related to customising nuBuilder Forte with JavaScript or PHP.
Locked
Janusz
nuBuilder Team
Posts: 508
Joined: Fri Dec 28, 2018 1:41 pm
Location: Krakow, Poland
Has thanked: 10 times
Been thanked: 18 times

Text area radius

Unread post by Janusz »

How to implement radius for all text areas.
for a specific one I can use: $('#.....').css('border-radius','10px');
Was trying for example with: .input[type=textarea] {border-radius: 10px;}
in header but did not succeed.
If you like nuBuilder, please leave a review on SourceForge
kev1n
nuBuilder Team
Posts: 4416
Joined: Sun Oct 14, 2018 6:43 pm
Has thanked: 74 times
Been thanked: 472 times
Contact:

Re: Text area radius

Unread post by kev1n »

Did you add it between the style tags?

Code: Select all

<style>
textarea {
  border-radius: 10px;
}
</style>
Janusz
nuBuilder Team
Posts: 508
Joined: Fri Dec 28, 2018 1:41 pm
Location: Krakow, Poland
Has thanked: 10 times
Been thanked: 18 times

Re: Text area radius

Unread post by Janusz »

Thanks a lot :-)
If you like nuBuilder, please leave a review on SourceForge
admin
Site Admin
Posts: 2822
Joined: Mon Jun 15, 2009 2:23 am
Been thanked: 29 times

Re: Text area radius

Unread post by admin »

.
Locked