Hi @Jim3 ![]()
To change the image banner height only on the desktop version for the Dawn theme, you can easily do this using CSS media queries. Here’s a quick solution you can try:
-
Go to Online Store → Themes → Customize
-
Click on Theme settings → Custom CSS (or alternatively, add in your theme’s CSS/SCSS file)
Add the following code:
@media screen and (min-width: 1024px) {> .banner__media {> height: 500px !important; /* Adjust the height as per your requirement /> object-fit: cover; / Optional: ensures image covers the area nicely */> }> }- This will apply the new banner height only on desktop devices (screen width 1024px and above).
- You can adjust the height value (500px) to whatever suits your design.
Hope this helps!
Let me know if you need help with mobile-specific adjustments too.
Regards,