This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Enqueue Bootstrap | |
define( 'CHILD_THEME_VERSION', '2' ); | |
function custom_load_bootstrap() { | |
wp_enqueue_style( 'bootstrap-css', '//stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css' ); | |
wp_enqueue_script( 'popper-js', '//cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js'); | |
wp_enqueue_script( 'bootstrap-js', '//stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js', array( 'jquery' ), CHILD_THEME_VERSION, true ); | |
} | |
add_action( 'wp_enqueue_scripts', 'custom_load_bootstrap' ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.product-shipping-info { | |
width: 100%; | |
text-align: center; | |
border: 1px solid #333; | |
padding: 10px 20px; | |
max-width: 200px; | |
margin: 0 auto; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.hero-bg { | |
background: url(https://cdn2.shopify.com/s/files/1/0034/6000/5961/files/for-people-who-love-the-earth_9966b8fe-a1d4-463e-b8a6-1bd5f75aa1cf_2000x.jpg?v=1563219447); | |
width: 100%; | |
height: 900px; | |
position: relative; | |
top: 0; | |
left: 0; | |
background-size: cover; | |
} |