Using <span> within a class
I'm using Joomla to construct a site.
The following CSS is placed within a table cell with a class name of "contentheading"
span.frontpage {
display: block;
background: #FCF0C8;
font-size: 12px;
padding: 10px;
margin-bottom: 10px;
color: #333;
border: 1px solid #ddb;
}
How do I need to change the code to enable it to work within the class of "contentheading"
I've tried
span contentheading.frontpage{
}
but without luck.
Could anybody help me? I've tried searching for the answer and it's getting me frustrated now.
Thanks alot in advance
|