Hello,
When activating the maintenance mode, an error is reported when checking the resulting HTML code using the validator:
https://validator.w3.org
Error: Element style not allowed as child of element body in this context.
The error is due to the fact that in this file:
\plugins\system\helixultimate\overrides\layouts\comingsoon.php
Code is added with the “style” tags inside the body (lines 205-213):
if($params->get('comingsoon_bg_image')) : ?
<style>
body{
...
}
</style>
endif;
Image
If this part of the code is moved just before line 71, before the “head” ends, the HTML validation is successful.
Could you review it to correct it in the next version?
Thank you.