New Topic

Reply To: Customization on fonts

Home › Forum › Customization › Customization on fonts › Reply To: Customization on fonts

#1390

StartupWP
Keymaster

Absolutely, we were going to write the CSS for you and instruct where to paste, but we just needed some more details of what you wanted.

Verdana and Georgia are actually web-safe fonts, widely considered to be installed on most computers, therefore safe to use on the web without needing to install or specially embed the fonts.

Arial and Georgia are widely regarded to have high readability.

Let’s try this and see what you think:

@import url(http://fonts.googleapis.com/css?family=Bree+Serif);
h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{font-family:'Bree Serif',serif}
body, div, p{font-family:arial,sans-serif}

Since, you’ve decided to use a child theme, we recommend editing style.css in your child theme, which currently looks like this:

/*
Theme Name: StartupPro Child
Template: startuppro
*/

@import url("../startuppro/style.css");

Go ahead and update it to:

/*
Theme Name: StartupPro Child
Template: startuppro
*/

@import url("../startuppro/style.css");
@import url(http://fonts.googleapis.com/css?family=Bree+Serif);

h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{font-family:'Bree Serif',serif}
body, div, p{font-family:arial,sans-serif}

You could simply go to Appearance > Editor > style.css from your WP admin and edit it, but we recommend editing it locally and then uploading the updated version via FTP, that way you’ll have a local backup to work with.

See: https://startupwp.com/topic/child-theming/

We recommend using the FileZilla FTP client: http://filezilla-project.org/ / http://wiki.filezilla-project.org/Using