I’m convinced that it is something in my child theme.
functions.php contain:
<?php
add_action( 'wp_enqueue_scripts', 'enqueue_parent_theme_style');
function enqueue_parent_theme_style() {
wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
}
style.css contains:
/*
Theme Name: Simone Child
Theme URI: https://spinalalignment.com/public_html/wp-content/themes
Description: Simone Child Theme
Author: Michael Polsinelli
Author URI: https://spinalalignment.com
Template: simone
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: responsive-layout, accessibility-ready
Text Domain: twenty-fifteen-child
*/
.menu-social li a[href*=tel]::before { content: '\f095'; }
.menu-social li a[href*="contact"]::before {content: '\f003'; }
.menu-social li a[href*="location"]::before {content: '\f041'; }
I really think it is a simple stupid mistake that I made. Any help would be greatly appreciated.