You’ve got some errors in your child theme’s style.css. It has the following:
/*
Theme Name: stackerchild
Description:
Author: [email protected]
Template: stacker-lite
(optional values you can add: Theme URI, Author URI, Version, License, License URI, Tags, Text Domain)
*/
@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
font-family: inherit, ’Noto Sans TC', sans-serif;}
#content {
text-align: right;
width: 200%;
}
<link rel="stylesheet" type="text/css" href="https://www.example.com/style.css?ts=<?=time()?>" />
Try changing it to:
/*
Theme Name: stackerchild
Description:
Author: [email protected]
Template: stacker-lite
(optional values you can add: Theme URI, Author URI, Version, License, License URI, Tags, Text Domain)
*/
@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
font-family: inherit, 'Noto Sans TC', sans-serif; }
#content {
text-align: right;
width: 200%;
}
That weird single quote in front of ‘Noto Sans TC’ was messing up the rest of the CSS causing it not to be defined. No idea where that example.com/style.css line is coming from but it shouldn’t be there.