WebSite X5Help Center

 
Alessandro W.
Alessandro W.
User

How to delete min-height from table properties?  en

Автор: Alessandro W.
Просмотрено 1329, Подписчики 2, Размещенный 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

Размещено
8 Ответы - 2 Полезно - 1 Корректно
 ‪ 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

.

Читать больше
Размещено От  ‪ KolAsim ‪ ‪
Alessandro W.
Alessandro W.
User
Автор

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

Читать больше
Размещено От Alessandro W.
Alessandro W.
Alessandro W.
User
Автор

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

Читать больше
Размещено От 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>

.

Читать больше
Размещено От  ‪ KolAsim ‪ ‪
Alessandro W.
Alessandro W.
User
Автор

Perfect! Grazie, KolAsim. : )

Читать больше
Размещено От Alessandro W.
 ‪ KolAsim ‪ ‪
 ‪ KolAsim ‪ ‪
Moderator

... wink ...

Читать больше
Размещено От  ‪ KolAsim ‪ ‪
Alessandro W.
Alessandro W.
User
Автор

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>

Читать больше
Размещено От Alessandro W.
Alessandro W.
Alessandro W.
User
Автор

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.

Читать больше
Размещено От Alessandro W.