Adjust statusBar Height on a Fullscreen Layout

I have a fullscreen layout like this…

dhxLayout = new dhtmlXLayoutObject(document.body, '3W');

dhtmlx.com/docs/products/dht … creen.html

I need to attach a “footer” that could possibly contain a long sentence with multiple page breaks (
's) so I need the footer to automatically grow and shrink to show all the text. I tried adding the footer and then adding my own class to both the statubar div’s like this…

.showOverflow{overflow: visible !important; height: auto !important; line-height: normal !important;}
var footer = dhxLayout.attachStatusBar();
jQuery("#"+footer.id).addClass('showOverflow');
jQuery("#"+footer.id+" .dhxcont_statusbar").addClass('showOverflow');
footer.setText("testing<br>testing<br>testing<br>end of test");

It had no affect. Can this be done?

But you can attach a footer as a div
dhtmlx.com/docs/products/dht … ooter.html
and set overflow:auto to it

Ah, thank you. I missed that page.

You are welcome!