- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2019
02:39 PM
12-04-2019
02:39 PM
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.
Labels:
2 ACCEPTED SOLUTIONS
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2019
08:26 PM
12-04-2019
08:26 PM
Hello @McLure
Please add below CSS:
.logo img { display: block; width: 100%; height: auto; }
https://drops.meetanshi.com/EQTRDr
Hope it helps.
---
If you've found my answer useful, please give"Kudos" and "Accept as Solution"
If you've found my answer useful, please give"Kudos" and "Accept as Solution"
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2019
08:52 PM
12-04-2019
08:52 PM
Hello @McLure
Yes it is CSS issue
.logo img { display: block; height: auto; width: 100%; margin-left: 10px; }
Was my answer helpful? You can accept it as a solution.
200+ Premium Magento 2 Extensions Need help? Hire Magento Developer
200+ Premium Magento 2 Extensions Need help? Hire Magento Developer
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2019
08:26 PM
12-04-2019
08:26 PM
Hello @McLure
Please add below CSS:
.logo img { display: block; width: 100%; height: auto; }
https://drops.meetanshi.com/EQTRDr
Hope it helps.
---
If you've found my answer useful, please give"Kudos" and "Accept as Solution"
If you've found my answer useful, please give"Kudos" and "Accept as Solution"
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2019
08:52 PM
12-04-2019
08:52 PM
Hello @McLure
Yes it is CSS issue
.logo img { display: block; height: auto; width: 100%; margin-left: 10px; }
Was my answer helpful? You can accept it as a solution.
200+ Premium Magento 2 Extensions Need help? Hire Magento Developer
200+ Premium Magento 2 Extensions Need help? Hire Magento Developer
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2019
10:42 PM
12-04-2019
10:42 PM
Re: Image height in mobile version of Magento 2.3.3 LUMA is stretched / wrong
@McLure its a css issue.
Please add the below css in your custom.css
.logo img{ height: auto; }
Thanks