Page Vertical Scroll

riminidev

New member
When the data in the page is too long ex: phpinfo()

The entire UI is getting readjusted to a smaller font size. Instead can we give a vertical scroll to the page ?
by using as below or thru some means possible:
body {
overflow-y: initial; /* avoid the double scroll */
}

Where to look for this change to be done ?
 

eugenio

Administrator
Staff member
Hello,
I've just tested a long page and I don't get a smaller font size.

Which version of DaDaBIK are you using? Which browser?
 

riminidev

New member
dadabik_8.1-Lerici_enterprise
It is happening with Chrome , Firefox , IE11, OS - Windows 7 Enterprise

I could not find where to attach the screenshot!!

Left menu and the entire text in the content panel is getting reduced.

Code in php page:

<?php
phpinfo();

echo "<pre>" ;
print_r(get_loaded_extensions()) ;
echo "</pre>"
?>
 

eugenio

Administrator
Staff member
Hello,
I don't think phpinfo is a good example, the HTML generated probably affects the page layout. I've tried to create a very long page setting 1000 record per page for the results grid and the font size doesn't change.

Best,
 
Top