mikemobley Posted February 18, 2020 Posted February 18, 2020 Site URL: https://www.austinlifechurch.com Does anyone know how to apply the small caps styling to any font? For example, how using CSS could we say something like this: -Have site title logo font (which is adobe garamond pro) have small caps style applied to it? Then maybe an example for header 1 or header 2 or body?
paul2009 Posted February 19, 2020 Posted February 19, 2020 There isn't a Site Styles tweak for this, so you need to add some CSS to Design > Custom CSS. Your site logo appears to be an image rather than text, but here's an example to affect the H1 titles: h1 { font-variant: small-caps; } You can make it affect other areas by replacing h1 with the correct selector. You could also add other selectors separated by commas to affect more than one area, for example, "h1, h2, h3". Me: I'm Paul, a SQSP user for >18 yrs & Circle Leader since 2017. I value honesty, transparency, diversity and good design ♥. Work: Founder of SF.DIGITAL. We provide high quality original extensions to supercharge your Squarespace website. Content: Views and opinions are my own. Links in my posts may refer to my own SF.DIGITAL products or may be affiliate links. Forum advice is completely free. You can thank me by selecting a feedback emoji. Buying a coffee is generous but optional.
mikemobley Posted February 19, 2020 Author Posted February 19, 2020 5 hours ago, paul2009 said: There isn't a Site Styles tweak for this, so you need to add some CSS to Design > Custom CSS. Your site logo appears to be an image rather than text, but here's an example to affect the H1 titles: h1 { font-variant: small-caps; } You can make it affect other areas by replacing h1 with the correct selector. You could also add other selectors separated by commas to affect more than one area, for example, "h1, h2, h3". Ok great thank you. So how then besides h1 would I be able to reference other areas like site title or navigation, etc. ?
paul2009 Posted February 19, 2020 Posted February 19, 2020 If you want to identify other selectors, you may find these articles helpful. They are a few years old but should still be relevant. Finding CSS ID and Class Selectors Using CSS on Squarespace Me: I'm Paul, a SQSP user for >18 yrs & Circle Leader since 2017. I value honesty, transparency, diversity and good design ♥. Work: Founder of SF.DIGITAL. We provide high quality original extensions to supercharge your Squarespace website. Content: Views and opinions are my own. Links in my posts may refer to my own SF.DIGITAL products or may be affiliate links. Forum advice is completely free. You can thank me by selecting a feedback emoji. Buying a coffee is generous but optional.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.