I'm a bit stuck and hope someone can help. I'm trying to add horizontal dividers with centered text that looks like:
--------------------------- Text ---------------------------------
And nothing I do seems to work. I'm using a slightly modified version of the Ship Shape theme if that helps..
I've tried everything I can think of including:
- Code: Select all
.divider {
width:960px;
text-align:center;}
.divider hr {
margin-left:auto;
margin-right:auto;
width:32%;}
.left { float:left; }
.right { float:right; }
<div class="divider"><hr class="left"/>WHAT OUR CUSTOMERS ARE SAYING<hr class="right" /></div>
..and..
- Code: Select all
<div style="height: 2px; background-color: black; text-align: center">
<span style="background-color: white; position: relative; top: -0.5em;">
WHAT OUR CUSTOMERS ARE SAYING
</span>
</div>
They both work properly outside of SS.. Is there something I'm missing?
Thanks,
Joe