helpmecss Posted March 16, 2021 Share Posted March 16, 2021 Hello, how can I change a Body Text (this particular one is LTC Bodoni) into a Heading font (H1 for example). Is that possible with css? Thank you in advance! Link to comment
creedon Posted March 16, 2021 Share Posted March 16, 2021 It's hard to give you a full answer as we have no context with which to work. No site view. In general you could probably achieve something pretty close to an h1 tag for body text with CSS. Find my contributions useful? Please like, upvote, mark my answer as best , and see my profile. Thanks for your support! Link to comment
helpmecss Posted March 16, 2021 Author Share Posted March 16, 2021 Thank you creedon! Is it possible to substitute a font then with a custom one? What would the css be if I want all LTC Bodoni fonts be swapped out with one that I download to the site? Thank you in advance! Link to comment
creedon Posted March 17, 2021 Share Posted March 17, 2021 @helpmecss You don't really substitute using CSS it is more a process of overriding various rules that define what elements use which font/size/weight, etc. After your font is available somewhere on the web via a URL. In this case probably uploaded to your site. You start with a ruleset that defines the font. Something like the following. @font-face { font-family: myFirstFont; src: url(sansation_light.woff); } From there you override whatever you want changed. h1 { font-family : myFirstFont; } Again this is all very general. Without a site to view it is difficult to be more specific. Find my contributions useful? Please like, upvote, mark my answer as best , and see my profile. Thanks for your support! Link to comment
helpmecss Posted March 18, 2021 Author Share Posted March 18, 2021 Hi Creedon, I'm sorry to bother you again. I appreciate your help so much! I know how to change the H1, H2 or H3 but this particular font is not a heading font... it is LTC Bodoni. And there is no way I can change LTC Bodoni to a Heading font. I would show you the website but it's not public yet and my client doesn't want me to change that until it's done. Link to comment
tuanphan Posted March 24, 2021 Share Posted March 24, 2021 On 3/18/2021 at 9:33 AM, helpmecss said: Hi Creedon, I'm sorry to bother you again. I appreciate your help so much! I know how to change the H1, H2 or H3 but this particular font is not a heading font... it is LTC Bodoni. And there is no way I can change LTC Bodoni to a Heading font. I would show you the website but it's not public yet and my client doesn't want me to change that until it's done. Do you still need help? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
helpmecss Posted March 25, 2021 Author Share Posted March 25, 2021 yes please @tuanphan Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment