Dominic
Thanks very much for your reply.
I am running gknews1_13 for wordpress.
For functions.php I had been using -
<?php
add_action('wp_enqueue_scripts', 'child_theme_css');
function child_theme_css() {
wp_enqueue_style('parent-theme-css', get_template_directory_uri() . '/style.css');
}
I replaced with your code in and everything looks the same.
The issue I am trying to resolve is that I want to change the layout of my home screen widgets. When I do, the change is replicated on all page templates and not just my custom home screen template. So that now while the home page displays like I want it to, the post page doesn't.
Customize only allows me to customize menus.
It seems that by going into Appearance > Widgets and setting the widgets has the effect of setting ALL pages and templates to whatever I define. How do I define individual templates that display different widgets?
Thanks