The process between producing old and new posts was exactly the same– it is a largely automated process that creates products in WooCommerce, the products being images (stock photos). The primary plugin to automate that process is completely unchanged between the old and the new, but of course WordPress has gone through several updates, as have WooCommerce, and my theme, Avada. Those are all up to date.
I don’t recall ever editing the CSS, and certainly not between the old and the new posts, but here it is in case it needs to be changed:
.crp_related {
clear: both;
}
.crp_related h3 {
margin: 0 !important;
}
.crp_related ul {
list-style: none;
float: left;
margin: 0 !important;
}
.crp_related li, .crp_related a {
float: left;
overflow: hidden;
position: relative;
text-align: center;
}
.crp_related li {
margin: 5px !important;
/*next line is border box around image and title– comment out to remove*/
border: 1px solid #313131;
padding: 6px;
}
.crp_related li:hover {
/*next line is color of hover over background*/
background: #67b7e1;
border-color: #bbb;
}
.crp_related a {
width: 150px;
height: 225px;
text-decoration: none;
}
.crp_related a:hover {
text-decoration: none;
}
.crp_related img {
max-width: 150px;
margin: auto;
}
/*below is text for pic titles*/
.crp_related .crp_title {
position: absolute;
height: inherit;
bottom: 6px;
left: 6px;
padding: 3px;
width: 144px; /* = 150px – (3px * 2) */
color: #fff;
font-size: .9em;
text-shadow: #000 .1em .1em .2em;
background: rgb(0.5, 0.5, 0.5);
background: rgba(0, 0, 0, 0.5);
}
.crp_related li:hover .crp_title {
background: rgb(0.2, 0.2, 0.2);
background: rgba(0, 0, 0, 0.8);
}
.crp_related .crp_thumb, .crp_related li, .crp_related .crp_title {
vertical-align: bottom;
-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.4);
-moz-box-shadow: 0 1px 2px rgba(0,0,0,.4);
box-shadow: 0 1px 2px rgba(0,0,0,.4);
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
}
.crp_clear {
clear: both;
}
Also, is there a way to turn off the text altogether, so that the thumbnails display nicely until the problem is resolved and I can turn the text back on?
Thanks