*

Izzyboi

  • ***
  • 59 posts
I'd like to change the font of beta theme
« on: May 25, 2022, 01:30:47 AM »
Hello osclasspoint

How can I change my theme font.
I know I'll have to add the font to the website and modify the css but can you please provide a short guide so I don't mess up the live site

Marked as best answer by frosticek on May 26, 2022, 12:47:42 PM
*

MB Themes

Re: I'd like to change the font of beta theme
« Reply #1 on: May 25, 2022, 09:50:42 AM »
@Izzyboi
In head.php change this to your own font link:
Code: [Select]
osc_enqueue_style('quicksand', 'https://fonts.googleapis.com/css?family=Quicksand:400,500,700&display=swap&subset=latin-ext,vietnamese');

Then you should replace in style.css/responsive.css following with your own family:
Code: [Select]
font-family:'Quicksand',sans-serif;
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

Izzyboi

  • ***
  • 59 posts
Re: I'd like to change the font of beta theme
« Reply #2 on: May 26, 2022, 09:31:07 AM »
@Izzyboi
In head.php change this to your own font link:
Code: [Select]
osc_enqueue_style('quicksand', 'https://fonts.googleapis.com/css?family=Quicksand:400,500,700&display=swap&subset=latin-ext,vietnamese');

Then you should replace in style.css/responsive.css following with your own family:
Code: [Select]
font-family:'Quicksand',sans-serif;
Thank you. I'll try this