Last active
September 21, 2020 09:01
-
-
Save hsleonis/0d3fb75b0c638d53d4b6a60a142d7155 to your computer and use it in GitHub Desktop.
Shopify debut hide collection page banner overlay and text
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
<div class="collection-hero__title-wrapper"> | |
<h1 class="collection-hero__title page-width"> | |
<span class="visually-hidden">{{ 'collections.general.collection_label' | t }}: </span> | |
<!-- collection.title --> | |
</h1> | |
</div> |
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
.collection-hero { | |
position: relative; | |
overflow: hidden; | |
margin-top: -$gutter-site; | |
/*margin-bottom: $gutter-site-mobile;*/ | |
@include media-query($medium-up) { | |
/*margin-bottom: $section-spacing-small;*/ | |
} | |
} | |
... | |
/*.collection-hero__title-wrapper::before { | |
content: ''; | |
position: absolute; | |
top: 0; | |
right: 0; | |
bottom: 0; | |
left: 0; | |
background-color: $color-image-overlay; | |
opacity: $opacity-image-overlay; | |
}*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment