Plugin Author
Ajay
(@ajay)
This is weird formatting from your theme. Could you please try this code in the Custom CSS styles:
.crp_related li::before {
content: "" !important;
background-color: transparent !important;
width: 0 !important;
height: 0 !important;
top: 0 !important;
}
Hi Ajay,
Just added the code and it did remove the bullets but there is a gap on the left side of each thumbnail where the bullet was. You can check the site to understand more about what I mean. Thanks.
Plugin Author
Ajay
(@ajay)
Hi, I did check it on you site. Your theme’s styles are badly overwriting the CRP ones.
Can you try this as well:
.crp_related li {
padding-left: 6 !important;
}
Hi Ajay,
Added the code but no luck. Still gap on the left side of thumbnails.
Plugin Author
Ajay
(@ajay)
Just noticed I forgot the px
.crp_related li {
padding-left: 6px !important;
}
It worked! Thank you so much Ajay!
Hello, sorry for hijacking this thread but I didn’t want to open a new one for the same problem. I managed to change the CSS a bit but it’s still not perfect.
Here is my site:
This is the custom CSS:
.crp_related {
clear: both;
margin: 10px 0;
}
.crp_related h3 {
margin: 0 !important;
}
.crp_related ul {
list-style: none;
float: left;
margin: 0 !important;
padding: 0 !important;
}
.crp_related li, .crp_related a {
float: left;
overflow: hidden;
position: relative;
text-align: center;
}
.crp_related li {
margin: 2px !important;
border: 1px solid #ddd;
}
.crp_related li:hover {
background: #eee;
border-color: #bbb;
}
.crp_related a {
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
text-decoration: none !important;
}
.crp_related a:hover {
text-decoration: none;
}
.crp_related .crp_title {
color: #fff !important;
position: absolute;
display: block;
bottom: 0 !important;
color: #fff;
font-size: .8em;
text-shadow: 1000 .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 li {
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);
}
.crp_clear {
clear: both;
}
.crp_title:visited {
color: #fff !important;
}
.crp_related li::before {
content: "" !important;
background-color: transparent !important;
width: 0 !important;
height: 0 !important;
top: 0 !important;
}
.crp_related li {
padding-left: 6px !important;
padding-right: 6px !important;
padding-top: 6px !important;
}