Having issues with a hover effect in a responsive Shopify site. Really has nothing to do with Shopify but rather CSS. My issue is that when I hover over the two images on the bottom of this page (http://aworldcurated.com/) the text appears center (good) on top (bad). It should be in the middle. I tried adding a vertical-align: middle; to the spans, but no luck yet. Anyone know where I should add it or do I have to rethink this for responsive?
Here's the HTML:
<div class="product span4">
<div class="image">
<div class="sample-product-wrapper">
<a href="http://aworldcurated.com/pages/about-us" title="About a World Curated"><img src="https://cdn.shopify.com/s/files/1/0471/0045/t/1/assets/just-arrived%20Copy.jpg?9523409680747224875" title="About a World Curated" width="302" height="302"><span class="text-content"><span>About Us</span></span></a>
</div>
</div>
</div>
And the CSS:
span.text-content {
background: none;
color: black;
cursor: pointer;
display: table;
font-size: 30px;
height: auto;
left: 0;
position: absolute;
top: 0;
width: 100%;
opacity: 0;
text-transform: uppercase;
-webkit-transition: opacity 500ms;
-moz-transition: opacity 500ms;
-o-transition: opacity 500ms;
transition: opacity 500ms;
}
span.text-content span {
display: table-cell;
text-align: center;
vertical-align: middle;
}
If you inspect the
span
in your browser, you will see that it doesn't take up any space in the container. You can either change it to adiv
and give it a height so yourvertical-align
property works, or push it down within the container with css:Use whatever percentage feels right.