04/11/2017 at 10:29 am
#419717
Keymaster
@ Chris
re: How can I remove the little black squares seen here? I thought it was the them, but they don’t appear on the newly created page.
Those are being added by the theme. Theme is actually overriding the styles in Connections.
Add the following to the theme’s custom CSS area:
ul.cn-category-image-container li.cn-category-image-block {
list-style: none;
}
re: On the newly created page here, the last row of images are stretched out.
Any suggestions?
Well, the images are square like they should be. Something is messing with the heights. Try adding the following to the theme’s custom CSS area:
ul.cn-category-image-container .cn-category-image-block img,
ul.cn-category-image-container .cn-category-image-block .cn-term-image-none {
height: inherit;
}
That should help, let me know.