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 { ...@@ -15647,7 +15647,7 @@ figure.woocommerce-product-gallery__wrapper {
15647 } 15647 }
15648 15648
15649 .hero-container { 15649 .hero-container {
15650 background-position: bottom right; 15650 background-position: top right;
15651 background-size: cover; 15651 background-size: cover;
15652 width: 100%; 15652 width: 100%;
15653 background-color: #ccc; 15653 background-color: #ccc;
...@@ -15658,9 +15658,22 @@ figure.woocommerce-product-gallery__wrapper { ...@@ -15658,9 +15658,22 @@ figure.woocommerce-product-gallery__wrapper {
15658 .full-image, 15658 .full-image,
15659 .image-loaded { 15659 .image-loaded {
15660 height: 530px; 15660 height: 530px;
15661 background-position: bottom right; 15661 background-position: top right;
15662 background-size: cover; 15662 background-size: cover;
15663 width: 100%; 15663 width: 100%;
15664 position: relative;
15665 }
15666
15667 .full-image::after {
15668 content: "";
15669 display: block;
15670 position: absolute;
15671 background-size: contain;
15672 bottom: -2px;
15673 right: 0px;
15674 width: 200px;
15675 height: 200px;
15676 background-image: url("../images/logo-border.png");
15664 } 15677 }
15665 15678
15666 #footer-full-content .footer-widget .wp-block-columns .wp-block-column:nth-of-type(2) ::before { 15679 #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 @@ ...@@ -51,7 +51,7 @@
51 } 51 }
52 52
53 .hero-container { 53 .hero-container {
54 background-position: bottom right; 54 background-position: top right;
55 background-size: cover; 55 background-size: cover;
56 width: 100%; 56 width: 100%;
57 background-color: #ccc; 57 background-color: #ccc;
...@@ -64,8 +64,20 @@ ...@@ -64,8 +64,20 @@
64 .full-image, 64 .full-image,
65 .image-loaded { 65 .image-loaded {
66 height: 530px; 66 height: 530px;
67 background-position: bottom right; 67 background-position: top right;
68 background-size: cover; 68 background-size: cover;
69 width: 100%; 69 width: 100%;
70 position: relative;
70 71
71 } 72 }
73 .full-image::after{
74 content: "";
75 display: block;
76 position: absolute;
77 background-size: contain;
78 bottom: -2px;
79 right: 0px;
80 width: 200px;
81 height: 200px;
82 background-image:url('../images/logo-border.png');
83 }
...\ No newline at end of file ...\ No newline at end of file
......