[Plugin: CataBlog] Title not lining up with thumbnail
-
I love this plugin! Thanks. I had to make one change to the css that I thought might be helpful to others. The background of the title was not lining up with the thumbnail, I think because my template css included a margin and border for image links. I made the following changes, trying several numbers, until I got them to line up.
.catablog-gallery.catablog-row .catablog-title {
display: none !important;
position: absolute !important;
bottom: 0px;
left: px;
color: #fff;
background: #222;
opacity: 0.8;
margin: 0 !important;
padding: 5px !important;
font-weight: normal !important;
font-size: 18px !important;to:
.catablog-gallery.catablog-row .catablog-title {
display: none !important;
position: absolute !important;
/* I changed the values in the following two lines, “11” worked only in my case */
bottom: 11px;
left: 11px;
color: #fff;
background: #222;
opacity: 0.8;
margin: 0 !important;
padding: 5px !important;
font-weight: normal !important;
font-size: 18px !important;
- The topic ‘[Plugin: CataBlog] Title not lining up with thumbnail’ is closed to new replies.