Hi, how can I make the font for the slideshow title and caption to be Open Sans only for this page?
I added this code:
.page-id-92001 .avia-caption-content.av_inherit_color p {
font-family: 'Open Sans' !important;
}
But it made no change. It does work on other pages I used it on. And it’s only for the caption. For this page I need to also change the title.
Thanks.
Hey DROR,
Did you add your css to the very top of quick css so it runs first. Also clear the cache a few times over.
Best regards,
Jordan Shannon
Yes.
What shoud be the CSS code for the title of the slideshow element? I only have the code for the caption.
Hi,
The link that you gave doesn’t take me to the screenshot provided. Can you check it again?
Best regards,
Jordan Shannon
Sorry, the slug changed.
Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
CSS Snippet:
.page-id-92001 h6.av-special-heading-tag {
font-family: 'Open Sans' !important;
}
Best regards,
Yigit
Thanks, that worked. What about the sub title (caption)?
I’m using this:
.page-id-92001 .avia-caption-content.av_inherit_color p {
font-family: 'Open Sans' !important;
}
But it’s not working.
Hi,
Add this to quick css:
.page-id-92001 .av-subheading.av-subheading_below.av_custom_color p{
font-family: 'Open Sans' !important;
}
But you will have to find and remove this:
.av-subheading.av-subheading_below.av_custom_color p {
font-family: 'Reforma Light'!important;
font-weight: 300!important;
}
Best regards,
Jordan Shannon