Conversation
supportImage height settings not working. Image height showing 56px for all background image blocks. On inspection, my image height settings element style is crossed out, element.style { min-height: 2000; } Any ideas why this might be? The page I need help with: [ log in to see the link]
On first sight: Because the min-height has no unit. Try something like 2000px, or 100vh. We do not automatically add a unit to the value to give the authors freedom to use any unit they like. (em, vh, px, ect.)
of course, thank you, that works, why didn’t I think of that : )
On first sight: Because the min-height has no unit. Try something like 2000px, or 100vh. We do not automatically add a unit to the value to give the authors freedom to use any unit they like. (em, vh, px, ect.)
of course, thank you, that works, why didn’t I think of that : )