Fixed height in V9
Autore: LogoLogics A.
Visite 710,
Followers 1,
Condiviso 0
Hello,
In V8 this code did the trick to get fixed height on every page:
<style type="text/css"> #imPage{position: absolute;height: 425px !important;} </style>
This does not work in V9 and I need to get the same height for every page, no matter if the content
fills up the space or not, the space between header and footer must remain the same:http://www.logologics.nl/SNH/index.html
Is there another code to insert in V9 please?
Thx,
Annie
Postato il
Hello,
In Version 9 you can use the attribute min-height.
<style type="text/css"> #imContent { min-height: 425px; } </style>
This attribute declares the minimum height of the page but if there is more content then you need to use also the max-height and add the scrollbars.
Hope this helps.