I am using one of the free web design templates to create my own site. The template uses a css style sheet and defines lots of different styles with similar names. I defined some new styles, but the problem is new styles do not effect to my pages. For example, this is the style for heading2 in one of the blocks:
#body .article h2 {
color: #ffaf04;
font-family: Georgia, serif;
font-size: 36px;
font-weight: normal;
letter-spacing: 2px;
line-height: 48px;
margin: 0;
padding: 0 48px;
text-align: center;
}
I try to add and use this style
.eventTitle { font-size:28px; color:black }
but when I use
<h2 class="eventTitle">something</h2>
style from #body .article is applied not eventTitle.
I was wondering maybe there is some parenting or protecting of some parent styles in CSS, or maybe some div items has to use some specific class styles or something.
I appreciate all comment and ideas in advance.
