With icons which are less than 100px high, keywords and such can go below the icon. If you only have keywords, it's printed between icons and don't seem to correspond to anything. Pretty confusing.
Edit: simple solution is to switch to 'vertical-align: top' and add more padding between elements but this means not keeping the same alignment as on the current page.
Also this worked for me (basically this is what I used on custom pages) but I haven't tested it in any other browser than the current version of FF:
Also, the page won't adapt to smaller resolutions as the icons from second column won't go below the icons from first one (don't know if that was the case before as well but maybe it's something to think about).
Display Issue
Edit: simple solution is to switch to 'vertical-align: top' and add more padding between elements but this means not keeping the same alignment as on the current page.
Also this worked for me (basically this is what I used on custom pages) but I haven't tested it in any other browser than the current version of FF:
.icon-image {
float: left;
clear: left;
margin-bottom: 1.5em;
margin-right: 1em;
min-width: 100px;
}
.icon-info {
margin-bottom: 1.5em;
margin-left: 100px;
}
Also, the page won't adapt to smaller resolutions as the icons from second column won't go below the icons from first one (don't know if that was the case before as well but maybe it's something to think about).