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!
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.
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: 4297
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 71 times
- Been thanked: 444 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: 4297
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 71 times
- Been thanked: 444 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?