11/24/2014 at 1:36 pm
#310741
Keymaster
@ Jay
Oh, I see the issue now!
Something is adding a style that hides vCards. You can see this in the page source:
.vcard{
display:none;
}
Add the following to the theme’s custom CSS area to override it:
#cn-list .vcard {
display: block;
}
That will fix it up!
