Tagged: portfolio grid
Dear Kriesi-Team,
I am trying to edit the text and background of he portfolio grid.
I found this on the documentation but it doesn’t work.
/*—————————————-
// CSS – Portfolio Grid Title and Background
//————————————–*/
/* Font */
.grid-entry .grid-entry-title {
color:#7d3f98;
background: transparent;
font-weight: 800;
}
/* Title background */
.grid-entry .grid-content,
/* Arrow*/
.grid-entry .grid-content .avia-arrow {
background: #ffc168;
}
I need following changes:
_text-transform: uppercase;
_background: #409ca6;
Thank you
Jasna
Hey Jables,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
#top .grid-entry h3.grid-entry-title a {
color: #fff;
text-transform: uppercase;
}
.grid-entry .grid-entry-title {;
background: #409ca6;
}
.grid-entry .grid-content,
.grid-entry .grid-content .avia-arrow {
background: #409ca6;
}
After applying the css, please clear your browser cache and check.
Best regards,
Mike
Awesome! It worked. Thank you, Mike!