Applying ssl cert breaks content
PermalinkWhen I go into the theme and look at the page which has this, called "front.php", I see:
<?=Loader::element("header_required");?>
For the font, i see the whole link:
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,600,700' rel='stylesheet' type='text/css'>
When I change the http in the google font api, it doesn't change on the live site at all.
I've tried clearing caches.
The location of the file is /themes/Themename/front.php. Is there somethere else this might be, or something I am missing to update this?

It used to be that https:// sites could pull in http:// assets such as fonts. Browser security on recent browsers blocks such urls. A secure page is not permitted to pull in assets from non-secure locations. The same applies to JS, CSS, Fonts and images.
A flexible fix for code is to leave the scheme off the front, so <link href='//... etc. The browser will then use whichever scheme the page was loaded with. That will work as long as the server providing the asset is also ssl.