Hello There,
Thanks for updating in!
1.) By default, there is no read more link in Ethos stack. If you want to add it, you will need to modify the excerpt more function. To do that, since the child theme is set up, please add the following code in your child theme’s functions.php file
// Custom Excerpt More String
// =============================================================================
if ( ! function_exists( 'x_excerpt_string' ) ) :
function x_excerpt_string( $more ) {
$stack = x_get_stack();
if ( $stack == 'integrity' ) {
return ' ... <div><a href="' . get_permalink() . '" class="more-link">' . __( 'Read More', '__x__' ) . '</a></div>';
} else if ( $stack == 'renew' ) {
return ' ... <a href="' . get_permalink() . '" class="more-link">' . __( 'Read More', '__x__' ) . '</a>';
} else if ( $stack == 'icon' ) {
return ' ...';
} else if ( $stack == 'ethos' ) {
return ' ... <a href="' . get_permalink() . '" class="more-link">' . __( 'Read More', '__x__' ) . '</a>';
}
}
add_filter( 'excerpt_more', 'x_excerpt_string' );
endif;
2.) To change the feature image sizes, please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)
.blog .entry-featured .entry-thumb {
background-size: contain;
}
3.) By default, when a post does not have a featured image, the featured image content holder will not be displayed. This is also why you will be seeing a fullwidth post item. This request maybe possible with custom development overriding the defaults by modifying the functions and the templates in the theme. Regretfully since this request requires more time for this particular customization it is beyond already the scope of our support. I would highly recommend that you contact a developer familiar with X theme and do this particular customization for you. You must understand that our support only covers getting your site set up, bug fixes and minor cosmetic changes.
4.) You will need to go to X > Theme Options > Typography > Site Links and change the site links/ link hover color from white to black. You can use the color picker to do that. And then go to Pages and edit your “Blog” page. You will need to change the page title from Blog to your Sitename.
Hope this helps. Please let us know how it goes.