Hello Donna,
Thanks for writing in!
1.) To make the blog post titles smaller on the blog posts page but not on the actual post page, please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)
.blog .x-iso-container-posts .entry-title,
.archive .x-iso-container-posts .entry-title {
font-size: 130%;
}
2.) To change the link of the comments in the post meta, since the child theme is set up, please add the following code in your child theme’s functions.php file
function custom_comments_link($comments_link){
if ( is_plugin_active( 'tco-disqus-comments/tco-disqus-comments.php' ) ) {
$hash = '#comments' : '#disqus_thread';
$comments_link = get_permalink( $post_id ) . $hash;
}
return comments_link;
}
add_filter('x_entry_meta_comments_link', 'custom_comments_link');
We would loved to know if this has work for you. Thank you.