Home Forums WoodMart support forum Make the landing first row "full height" only on desktop Reply To: Make the landing first row "full height" only on desktop

#343596

Hello,

You can try this CSS:

@media (min-width: 768px){
body div.custom_height_home {
min-height: 95.5116vh;
}
}

However it would not work much, you have the content that requires the height and this row would not be narrow on mobile devices, you can set full height on the desktop.

Best Regards