06/26/2014 at 10:16 am
#295177
Keymaster
@ Steve
The custom is loaded as a dependency of the core CSS file so it will be loaded after the core CSS and override it’s properties. If you want to customize #cn-cmap .cn-entry
, I suggest copying it from the core file and then changing the values to suit like so:
#cn-cmap .cn-entry {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: 0;
-moz-box-shadow: 0p;
box-shadow: none;
background: none;
border: none;
font-size: 12px;
margin: 10px 4px;
padding: 12px;
position: relative;
}
The above will deal with everything except the background color/gradient. That CSS is very complex and is very difficult to override completely. To adjust those, I built in two shortcode options for cMap that allows it to be very easily configured, see this doc page for cMap.
Hope that helps!