Change size of submit button

Hello

Is it possible to change the size of an individual Submit button?

Hi Brad

Thanks. I've played around with the CSS and found a post on here to alter all submit buttons. using "button.kn-button.is-primary". I've used the below code to try and alter just the submit button on view89 but this doesn't alter it.

#view_89 > div > button.kn-button.is-primary
{
background-color: #059a0f !important;
padding: 100px !important;
color: white !important;
font-size: 100px !important;
}

It is Dan - have you tried any CSS yet?

Hi

I didn’t like the look of 1 of my buttons containing “Submit Completion & Reschedule Job” as I felt it was too wide so I changed it to “Submit Completion
& Reschedule Job” but then the button seemed a little too small for the text. I used the following code to make the button taller to accommodate the 2 lines of text.

#view_980 div button.kn-button.is-primary{

padding: 10px !important;

background-color: #45ba67 !important;

color: white !important;

font-size: 15px !important;

font-weight: bold !important;

block-size: 50px;

}

Dean

2 Likes