cb41ae88 by Jeff Balicki

border image

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent c4ad423b
......@@ -15647,7 +15647,7 @@ figure.woocommerce-product-gallery__wrapper {
}
.hero-container {
background-position: bottom right;
background-position: top right;
background-size: cover;
width: 100%;
background-color: #ccc;
......@@ -15658,9 +15658,22 @@ figure.woocommerce-product-gallery__wrapper {
.full-image,
.image-loaded {
height: 530px;
background-position: bottom right;
background-position: top right;
background-size: cover;
width: 100%;
position: relative;
}
.full-image::after {
content: "";
display: block;
position: absolute;
background-size: contain;
bottom: -2px;
right: 0px;
width: 200px;
height: 200px;
background-image: url("../images/logo-border.png");
}
#footer-full-content .footer-widget .wp-block-columns .wp-block-column:nth-of-type(2) ::before {
......
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
......@@ -51,7 +51,7 @@
}
.hero-container {
background-position: bottom right;
background-position: top right;
background-size: cover;
width: 100%;
background-color: #ccc;
......@@ -64,8 +64,20 @@
.full-image,
.image-loaded {
height: 530px;
background-position: bottom right;
background-position: top right;
background-size: cover;
width: 100%;
position: relative;
}
.full-image::after{
content: "";
display: block;
position: absolute;
background-size: contain;
bottom: -2px;
right: 0px;
width: 200px;
height: 200px;
background-image:url('../images/logo-border.png');
}
\ No newline at end of file
......