Hi All, with the help of this forum (thanks!) I have been able to add some custom functions to my child theme even though I an not a coder (princess cut and paste).
Here's a function I wrote to add another stylesheet to a specific page, maybe it will be useful to others:
// change styling for merchant-catalog
function merchant_layout() {
if (is_page('merchant-catalog')) { ?>
<link rel="stylesheet" type="text/css" href="<?php echo bloginfo('stylesheet_directory') ?>/merchant.css" />
<?php }
}
add_action('wp_head', 'merchant_layout');