Adding Button to Shop Page in WooCommerce [closed]

You need to go beyond CSS to do this. It requires hooking into the loop template like so:

add_action( 'woocommerce_after_shop_loop_item', 'my_112757_add_product_link', 11 );

function my_112757_add_product_link() {
     global $product;

     echo '<a href="' . esc_url( get_permalink( $product->id ) ) . '">More Detail</a>';
}

Put the above code in your theme’s functions.php file. You can also add a class to the anchor tag to custom style the link the way you want.