diff --git a/wp-content/themes/apus-theme/assets/css/style.css b/wp-content/themes/apus-theme/assets/css/style.css index c7d911bf..49091098 100644 --- a/wp-content/themes/apus-theme/assets/css/style.css +++ b/wp-content/themes/apus-theme/assets/css/style.css @@ -1263,3 +1263,13 @@ footer .btn-primary:hover { background-color: var(--color-orange-hover); border-color: var(--color-orange-hover); } + +/* Contact Info Styles */ + +.contact-info i { + color: var(--color-orange-primary); +} + +.contact-info h6 { + font-weight: 400; +} diff --git a/wp-content/themes/apus-theme/functions.php b/wp-content/themes/apus-theme/functions.php index 41691b47..fb1dde07 100644 --- a/wp-content/themes/apus-theme/functions.php +++ b/wp-content/themes/apus-theme/functions.php @@ -69,10 +69,10 @@ add_action('after_setup_theme', 'apus_content_width', 0); * Enqueue Scripts and Styles */ function apus_enqueue_scripts() { - // Main stylesheet + // Main stylesheet (actual CSS file) wp_enqueue_style( 'apus-theme-style', - get_stylesheet_uri(), + get_template_directory_uri() . '/assets/css/style.css', array(), APUS_VERSION );