Changing button size

hi.. can anyone tell me how do I change the size of any button on a specific menu ? (only one button not all buttons across the database... ???

Hi Nour,

If every menu is the same in your app, with the same button order, you should be able to use the following text in the CSS editor:

a.kn-link.kn-link-1.kn-link-page.kn-button
{
padding: 5px !important;
background-color: blue !important;
color: white !important;
font-size: 20px !important;
font-weight: bold !important;
}

Otherwise, you'll have to specify the individual views:

#view_10 > div > a.kn-link.kn-link-1.kn-link-page.kn-button, #view_15 > div > a.kn-link.kn-link-1.kn-link-page.kn-button, ...
{
padding: 5px !important;
background-color: blue !important;
color: white !important;
font-size: 20px !important;
font-weight: bold !important;
}

The result should look something like this: