02/21/2017 at 9:54 am
#412331
Keymaster
RE: on this first line of the address takes the same font as the label.
Oh, I see now. I was so focused on the address label position that i did not notice it did not match.
Looking at it, I see that is is actually correct even though it does not look that way.
The remainder of the address and text are links and that is the way the theme has styled links. The first line of the address is not a link.
So, the fix is to apply the same style the theme applies to links to the first line of the address. Add the following to the theme’s custom CSS area:
#cn-cmap span.street-address {
color: #00bab7;
font-weight: 500;
font-style: inherit;
font-size: 15px;
line-height: 18px;
text-shadow: 2px 8px 6px rgba(0,0,0,.2), 0 -5px 35px rgba(255,255,255,.3);
}
That should make them match.
Hope that helps, let me know.
