A span element can not be centered like that. Either you can change it to <p> elements or you can make the span element display:block like this
Code:
.smallquote {
display: block;
text-align: center;
font-weight: bold;
}
.smallquote_sub {
display: block;
text-align: center;
font-weight: lighter;
font-style: italic;
}
Regarding the last part try to change it to
Code:
<p class="sub_title" style="margin-top:-10px; padding-bottom:20px;">~ Both CDs ~</p>
removing two quotes in the middle and adding some semicolons
Bookmarks