Page 1 of 1

Doc on porting to v.7 hides some html

Posted: 2017-03-17T06:48:05-07:00
by kitchin
On the doc page https://www.imagemagick.org/script/porting.php most this phrase is hidden:

Code: Select all

animate, compare, composite, conjure, convert, display, identify, import, mogrify, montage, stream
Makes it difficult to word search!

The fix is to modify the CSS
https://www.imagemagick.org/css/magick.php

Code: Select all

@media (min-width: 768px)
.dl-horizontal dt {
    float: left;
    width: 160px;
    overflow: hidden;
    clear: left;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
}
Just delete "white-space: nowrap;"

Mobile is not affected.