Posted on 11/06/2018 11:32:07
Hi Axel
Perfect, thanks. I think the bug is related to IE being quite bad at some very comon css properties. There is an easy fix though, that as far as I remember, solves the bug everywhere on Rapido. You have two options:
Make the fix in the Rapido base css:
In css/base/layout/_layout.less replace the current "height" classes with:
.paragraph-container--height-sm {
height: 150px;
& > .paragraph-container {
height: 150px;
}
}
.paragraph-container--height-md {
height: 220px;
& > .paragraph-container {
height: 220px;
}
}
.paragraph-container--height-lg {
height: 350px;
& > .paragraph-container {
height: 350px;
}
}
.paragraph-container--height-xl {
height: 550px;
& > .paragraph-container {
height: 550px;
}
}
The other option is to do it in Ignite:
If you want to stay away from the base css, then create the fix in your own ignite project (css/ignite/layout/_layout.less)
The bug on http://partell2.azurewebsites.net/ is a little different, and I am quite sure it is fixed on newer versions of Rapido. The fix for your solution would be to create this css in css/ignite/layout/_layout.less
.logo.dw-mod img {
height: 60px;
}
Best regards
Karsten Thuen