Hi there,
I have a new question.
How can I create a button without a blue border?
Many greetings
David
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.
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.
Button as a normal word (without blue frame)
-
- Posts: 68
- Joined: Tue Mar 09, 2021 6:45 pm
Button as a normal word (without blue frame)
You do not have the required permissions to view the files attached to this post.
-
- nuBuilder Team
- Posts: 4562
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 76 times
- Been thanked: 528 times
- Contact:
Re: Button as a normal word (without blue frame)
Hi,
Like this?
Like this?
Code: Select all
$('#your_button_id').removeClass('nuButton').css({'background-color':'white','border':'none'});
-
- Posts: 68
- Joined: Tue Mar 09, 2021 6:45 pm
Re: Button as a normal word (without blue frame)
ah great thank you 
it works
Is there a way to change the mouse over color?

it works
Is there a way to change the mouse over color?
-
- nuBuilder Team
- Posts: 4562
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 76 times
- Been thanked: 528 times
- Contact:
Re: Button as a normal word (without blue frame)
Add a custom class in setup-> header
The use this JS:
Code: Select all
.mybutton {
background-color: white;
border: none;
}
.mybutton:hover {
color: red;
}
Code: Select all
$('#your_button_id').removeClass('nuButton').addClass('mybutton');
-
- Posts: 68
- Joined: Tue Mar 09, 2021 6:45 pm
Re: Button as a normal word (without blue frame)
let's stick with the first codekev1n wrote: ↑Sun Mar 06, 2022 3:45 pm Hi,
Like this?Code: Select all
$('#your_button_id').removeClass('nuButton').css({'background-color':'white','border':'none'});
How can I make the font bold?