??
To be honest, adjusting the CSS code is really fun for me.
So, here we go:
1.) each post title (again replace #00ff00 with whatever you want your color to be):
ul.related_post li a {
color: #00ff00 !important;
}
2.) spaces (just a heads up, if you will use more space between posts, they will not fit 3 of them in a row):
ul.related_post li {
width: 205px !important;
margin: 5px 25px 5px 0 !important;
}
3.) shadows:
ul.related_post li img {
width:205px !important;
height:130px !important;
box-shadow: none !important;
}
4.) “eyed corners” – you want them more round? If yes, try this:
ul.related_post li img {
width:205px !important;
height:130px !important;
box-shadow: none !important;
border-radius: 15px !important;
}
To sum it up – everything put together should look like this:
.related_post_title {
}
ul.related_post {
}
ul.related_post li {
width: 205px !important;
margin: 5px 25px 5px 0 !important;
}
ul.related_post li a {
color: #00ff00 !important;
}
ul.related_post li img {
width:205px !important;
height:130px !important;
box-shadow: none !important;
border-radius: 15px !important;
}
And if you need anything else adjusted, bring it on ??