Welcome to the nuBuilder Forums!

Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, 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: 11 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: 4568
Joined: Sun Oct 14, 2018 6:43 pm
Has thanked: 76 times
Been thanked: 532 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: 11 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: 2829
Joined: Mon Jun 15, 2009 2:23 am
Been thanked: 30 times

Re: Text area radius

Unread post by admin »

.
Locked