Skip to content

Instantly share code, notes, and snippets.

@andrclp
andrclp / css
Created July 18, 2019 18:47
move background image on mouse movement
.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;
}
@andrclp
andrclp / location.css
Last active September 29, 2019 08:37
geo location users and show location
.product-shipping-info {
width: 100%;
text-align: center;
border: 1px solid #333;
padding: 10px 20px;
max-width: 200px;
margin: 0 auto;
}
// 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' );