Hi
Sorry, there was some glitch in automation system. I did not have Your question in my list.
Here is what I've added to modules HTML. It cannot use a title of the module, so titles had to be added manually.
- Code: Select all
<div class="grid-overlay">Title goes here</div>
And here a code added to override.css file in template:
- Code: Select all
.gkGridElement .grid-overlay {
position: absolute;
background-color: #ddd;
width: 100%;
box-sizing: border-box;
font-size: 14px;
font-size: bold;
color: #fff;
width: 100%;
padding: 20px;
height: 15%
transition: all 0.4s ease-out 0s;
-webkit-transition: all 0.4s ease-out 0s;
-moz-transition: all 0.4s ease-out 0s;
-ms-transition: all 0.4s ease-out 0s;
-o-transition: all 0.4s ease-out 0s;
text-align: left;
bottom: 0;
}
.gkGridElement:hover .grid-overlay {
height: 100%;
font-size: 22px;
text-align: center;
padding-top: 45%;
}