I created some nice template and style (HTML+CSS), content and some 'global content blocks' in two languages. Problem is to define {content} css part.
I make some HTML div for content and style it in CSS, but problem is that when I create some link, letters are always white and can't change it

Here is the code
html :
Code: Select all
<div class="sadrzaj--sajta"> {content}
Code: Select all
.sadrzaj--sajta
{
height: 602px;
left: 173px;
top: 60px;
background-color: transparent;
text-align: justify;
font-family: “Trebuchet MS”, Helvetica, sans-serif;
font-style: normal;
font-size: 18px;
color: #3D4B51;
}
a
{
font-family: “Trebuchet MS”, Helvetica, sans-serif;
font-style: normal;
font-size: 18px;
color: #3D4B51;
}
a:link
{
font-family: “Trebuchet MS”, Helvetica, sans-serif;
font-style: normal;
font-size: 18px;
text-decoration: underline;
color: #3D4B51;
}
a:hover, a.hover
{
font-family: “Trebuchet MS”, Helvetica, sans-serif;
font-style: normal;
font-size: 18px;
color: #3D4B51;
text-decoration: underline;
}

Any ideas?
Thanks for all!