Page 1 of 1

Buttons in footer

Posted: Thu Jun 18, 2015 10:20 pm
by Aeneas McBurney

I have 4 buttons in a grid in footer. They all display as inline but I want them to be full length. How do I do this?

I tried data-inline:false on button but it didn't work.

Thanks,
Aeneas


Buttons in footer

Posted: Fri Jun 19, 2015 11:11 am
by Alena Prykhodko

Hello,

Please show us how and where do you use this code.


Buttons in footer

Posted: Sun Jun 21, 2015 11:30 pm
by Aeneas McBurney

I tried this code in the button properties. I've also tried using the below classes for footer and the buttons but still didn't work

.invoiceFooter{
position: fixed;
box-sizing: border-box;
display:block !important;

}

.footerButton{
display:block;
}


Buttons in footer

Posted: Fri Jun 26, 2015 4:58 am
by Yurii Orishchuk

Hi Aeneas,

Please use following CSS code in the CSS asset to get your footer buttons block-displayed.

pre

div.ui-footer a.ui-btn{
display: block;
}

/pre

Regards.