04/29/2015 at 9:19 am
#332813
Keymaster
@ Jacey
First, remove the width='590'
from the shortcode, that’ll break responsive support.
The issue is a CSS conflict with the theme, it is overriding a few styles in cMap. This is easily fixable.
I added the following to the theme’s custom CSS area:
#cn-cmap .vcard {
float: none;
width: auto;
margin: 0;
}
#cn-cmap h3 .fn {
text-align: right;
}
This fixed it right up.