badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Reply To: child theme: 404 page and search page styling

#21003
iacwebsites
Participant

Hi,

Finally getting back to work on this site. When I copied the code you provided just below the last line of the child theme functions.php file (see child theme functions.php code below)–it broke the site. Any advice would be most appreciated (I am using a child theme plugin). Also, what is controlling the bright green, large type, all-caps title in the breadcrumb area on the theme’s 404 page (PAGE NOT FOUND) and search results (SEARCH RESULTS) pages:
Examples
http://www.immunizationcoalitions.org/x
http://www.immunizationcoalitions.org/?s=help

Thanks in advance for your help!

********
<?php
// Exit if accessed directly
if ( !defined( ‘ABSPATH’ ) ) exit;

// BEGIN ENQUEUE PARENT ACTION

if ( !function_exists( ‘chld_thm_cfg_parent_css’ ) ):
function chld_thm_cfg_parent_css() {
wp_enqueue_style( ‘chld_thm_cfg_parent’, get_template_directory_uri() . ‘/style.css’ );
}
endif;
add_action( ‘wp_enqueue_scripts’, ‘chld_thm_cfg_parent_css’ );

// END ENQUEUE PARENT ACTION

********