Hey volpik,
You can just set a css class in the byline section and customize it in Your WordPress custom css.
for example:
<div class"tiles"> %title% <br> %featured_image%</div>
.tiles:hover {[background-color: #000]}
Thread Starter
volpik
(@volpik)
Thanks, but I could not manage to make it working 🙂
I have this custom css on the page, and I have just appended your css part after it, maybe this is not the way to do it 🙂
—–
.wp-tiles-tile-with-image .wp-tiles-byline-title
{
/*
text-align:left;
float: right;
(questo genera un box pieno)
*/
font-family: ‘Raleway’, sans-serif;
font-weight: 500;
font-size:25px;
background-color: #C01727;
/*opacity: 0.9;*/
display: inline;
/*font-weight:bold; */
line-height: 130%;
position: relative;
bottom: 20px;
}
.tiles:hover {[background-color: #000]}
—–