Multiline footer

How to make a footer than has a multiline items something like that two/three rows.

If you want to make the footer higher, you could do that with custom css. I would suggest using sass and setting .bar-footer height like this:

.footer-bar {
   height: ($bar-height*2);
}

If you eman you just want to display multiline text and it isn’t displaying in multiline although you added the \n parts, you should wrap it in <pre></pre> tags, which is designed to render text that has multiline text.

@iwantwin thanks. But i dont want to add a multiine text. I want to add multiple row that has an items. Like that:

  <div class="row">
    <div class="col">row1 col1 <button/checkbox/etc...></div> 
         <div class="col">row1 col2 <button/checkbox/etc...></div>
                 </div>
    <div class="row">
    <div class="col">row2 col1 <button/checkbox/etc...></div> 
         <div class="col">row2 col2 <button/checkbox/etc...> </div>
                 </div>

I have to show this two line item top and bottom but show side by side in same line :frowning:

Have you checked for subheaders and/or subfooters?

Can you fix stuff by chaging $bar-height default value in the sass files?