Found it…
Place this code in functions.php to cause the home page to display posts only from one category. Category is ‘123’ in example below. Works great!
function my_home_category( $query ) {
if ( $query->is_home() && $query->is_main_query() ) {
$query->set( ‘cat’, ‘123’ );
}
}
add_action( ‘pre_get_posts’, ‘my_home_category’ );
Okay. Got the logo image on the left with title and tagline stacked on the right using relative positioning and top and left values. Much better now.
Thanks, figure2. I tried this and it worked. I made up a dummy class called ‘keep’ in the child style.css file. I wish I could left align the logo image and then stack the site title and tagline on top of each other to the right of the logo.