How to delete min-height from table properties?
Autor: Alessandro W.
Visitado 1397,
Followers 2,
Compartido 0
Sometimes, under a table appears a wide empty area. Analyzing the page code I found the table property #imCellStyle_11 {min-height: 1885px;} which, comparing the value with the length of the web page, could be the cause.
Does anybody knows how to delete this information from the table properties?
page example: www.alpenlounge.eu/konzerte.html
Publicado en
... post (IT-EN)
... Se non si risolve con il programma, provare ad incollare nel:
... If not resolved by the program, try to paste in:
>> Step 3 - Map > The Page Properties window > Options in the Expert section | ▪Custom Code: ... ►Before closing the HEAD tag:
<style>*{min-height: 0px !important; height:auto !important}</style>
.
ciao
regards
.
Autor
It works. - Holy code! Thank you, KolAsim. : )
Autor
But it kills the multimedia object on the page ...
... (IT - provare a sostituire con questo codice:) ...Try to replace with this code:
<style>*:not(#imCell_16){min-height: 0px !important; height:auto !important}</style>
.
Autor
Perfect! Grazie, KolAsim. : )
... ...
Autor
KolAsim, one last question, please. The initial code killed also #imCell_19. What should your code look like in order to save cell 16 + 19?
This way?
<style>*:not(#imCell_16;#imCell_19){min-height: 0px !important; height:auto !important}</style>
Autor
Try & error result. Auto-response: yes. : )
Reassuming: set min-height = 0 and list up all cells which should be exclude from min-height.
Thank you again for the code snippet, KolAsim.