Cover problem
cover is 30vh by default in protean settings. What if I only want 0.5vh?
It would be nice, because if I need to use submenus, they would not be in conflict with my logo.
-
-
·
LeonidS
- ·
Hello Pethol!
You may enter 0.5vh - Protean settings allow it ;-)
-
·
LeonidS
-
- · Pethol
-
·
In reply to LeonidS
- ·
Allow it maybe, but nothing happens. It stay at some 30vh. If I set it higher than 30vh, it become larger, but never lower.
I found the following code in /templates/css/cover.css.bx-cover { position: relative; z-index: 2; display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; min-height: 40vh; text-align: center; }
But even changing the minimum height does not have any effect.
-
-
·
Alex T⚜️
-
·
In reply to Pethol
- ·
Try to add "!important" to override it. For example:
.bx-cover { min-height: 10vh !important; }
-
·
Alex T⚜️