Sure, you could add a new class for the section like for example overlay-title, and then create the styles for it (you could use something like below as the starting point, but you should customize it as you see fit).
.overlay-title article h1 { position: absolute; bottom: 0px; box-sizing: border-box; display: block; width: 100%; line-height: 2.2rem; margin-bottom: 0px; background: rgba(200,200,10,0.6); padding: 5px; z-index: 1; }
.overlay-title article img { position: relative; width: 100%; box-sizing: border-box; }
.overlay-title article { position: relative; box-sizing: border-box; overflow: hidden; padding: 0px; }
-
This reply was modified 9 years, 8 months ago by
Marius L. J..
-
This reply was modified 9 years, 8 months ago by
Iulia Cazan.
Yes, you can customize the articles look as described. I would define a new css class, for example overlay-title for that section and add something like this.
.overlay-title article h1 {
position: absolute;
bottom: 0px;
box-sizing: border-box;
display: block;
width: 100%;
line-height: 2.2rem;
margin-bottom: 0px;
background: rgba(200, 200, 10, 0.6);
padding: 5px;
z-index: 1
}
.overlay-title article img {
position: relative;
width: 100%;
box-sizing: border-box;
}
.overlay-title article {
position: relative;
box-sizing: border-box;
overflow: hidden;
padding: 0px;
}
However, you should customize it as you see fit.