WebSite X5Help Center

 
Alessandro W.
Alessandro W.
User

How to delete min-height from table properties?  en

Author: Alessandro W.
Visited 1327, Followers 2, Shared 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

Posted on the
8 ANSWERS - 2 USEFUL - 1 CORRECT
 ‪ KolAsim ‪ ‪
 ‪ KolAsim ‪ ‪
Moderator

... post (IT-EN) laughing 

... 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

.

Read more
Posted on the from  ‪ KolAsim ‪ ‪
Alessandro W.
Alessandro W.
User
Author

It works. - Holy code! Thank you, KolAsim. : )

Read more
Posted on the from Alessandro W.
Alessandro W.
Alessandro W.
User
Author

But it kills the multimedia object on the page ...

Read more
Posted on the from Alessandro W.
 ‪ KolAsim ‪ ‪
 ‪ KolAsim ‪ ‪
Moderator

... (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>

.

Read more
Posted on the from  ‪ KolAsim ‪ ‪
Alessandro W.
Alessandro W.
User
Author

Perfect! Grazie, KolAsim. : )

Read more
Posted on the from Alessandro W.
 ‪ KolAsim ‪ ‪
 ‪ KolAsim ‪ ‪
Moderator

... wink ...

Read more
Posted on the from  ‪ KolAsim ‪ ‪
Alessandro W.
Alessandro W.
User
Author

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>

Read more
Posted on the from Alessandro W.
Alessandro W.
Alessandro W.
User
Author

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.

Read more
Posted on the from Alessandro W.