I am trying to create a custom class for my Shoutbox themed website, but am having difficulty making it work. Here is the steps I have done:
I have inputted this code in my custom.css file:
#quote-container
{
margin: auto;
width: 620px;
background: #B01327;
padding: 5px
}
.thequote {
font-family: "Times New Roman", Times, serif;
font-size: 20pt;
color: #FFFFFF;
font-weight: bold;
}
.theauthor {
font-family: Arial, Helvetica, sans-serif;
font-size: 10pt;
color: #000000;
font-style: italic;
And I have added this code in the content area:
<div id="quote-container">
<p class="thequote">A woman's head is always influenced by heart; but a man's heart by his head.</p>
<p class="theauthor">- Lady Marguerite Gardiner Blessington</p>
</div>
The result is this: (no change to the content)
http://greatestlovequotes.com/love-quotes-by-lady-marguerite-gardiner-blessington-32/
Any thoughts on what I might be doing wrong? Any help would be much appreciated. Thanks!