It seams that my mobile version of LUMA 2.3.3 has error in definition of image height.
Logo at the top
- and image in pages is stretched (Have to set width to 100% and no definition of width).
CSS error?
Desktop version is fine.
Is there any fix for this?
Thanx!
Solved! Go to Solution.
Hello @McLure
Please add below CSS:
.logo img {
display: block;
width: 100%;
height: auto;
}https://drops.meetanshi.com/EQTRDr
Hope it helps.
Hello @McLure
Yes it is CSS issue
.logo img {
display: block;
height: auto;
width: 100%;
margin-left: 10px;
}
Hello @McLure
Please add below CSS:
.logo img {
display: block;
width: 100%;
height: auto;
}https://drops.meetanshi.com/EQTRDr
Hope it helps.
Hello @McLure
Yes it is CSS issue
.logo img {
display: block;
height: auto;
width: 100%;
margin-left: 10px;
}
@McLure its a css issue.
Please add the below css in your custom.css
.logo img{
height: auto;
}Thanks