Hi there,
I’m making adjustments to the letter-spacing of my custom font. Here’s the code in Customize > Additional CSS:
/* Tab slider list for bigger screens*/
@media(min-width:767px){
.bm-tab-slider-trigger-tilte {
font-family: ‘ExecutiveRegular’, sans-serif !important;
letter-spacing: -1px;
font-size: 40px;
line-height: 44px; }
}
/* Tab slider list for smaller screens*/
@media(max-width:767px){
.responsive-ux .bm-tab-slider-trigger-tilte {
font-family: ‘ExecutiveRegular’, sans-serif !important;
letter-spacing: -1px;
font-size: 33px;
line-height: 38px; }
}
The -1 letter-spacing is what I want now. It was previously around -2. However these changes aren’t working for Chrome and Firefox, only Safari. **Any idea why?**