2
this is the css for your news items which affect your text size:
.item
{
color: #0D0D0D;
}
.itemHead
{
padding: 3px;
color: #242424;
border-bottom: 1px dashed #8699B5;
}
.itemInfo
{
text-align: right;
padding: 3px;
background-color: #FFFFFF;
}
.itemTitle a
{
font-size: 130%;
font-weight: bold;
font-variant: small-caps;
color: #A52303;
background-color: transparent;
}
.itemPoster
{
font-size: 80%;
font-style: italic;
}
.itemPostDate
{
font-size: 80%;
font-style: italic;
}
.itemStats
{
font-size: 80%;
font-style: italic;
}
.itemBody
{
padding-left: 5px;
}
.itemText
{
margin-top: 5px;
margin-bottom: 5px;
line-height: 1.5em;
}
.itemText:first-letter
{
font-size: 133%;
font-weight: bold;
}
.itemFoot
{
text-align: left;
padding: 3px;
background-color: #FFFFFF;
font-size: 11px;
}
.itemAdminLink
{
font-size: 90%;
}
.itemPermaLink
{
font-size: 90%;
}
in the above css you are specifying text size in precentages, but i do not see where you specify the normal size. so, 130% of what and so on.
on your first news item you are using the following html:
<P align=center><FONT size=3>Praias, Caminhadas, Trilhas, <BR>Belezas Naturais, Muuuitos Camarões <BR>e o </FONT><FONT size=4><STRONG>Forró da Ilha!!!</STRONG></FONT></P></span></p>
<p align="left" class="itemText"><span class="itemAdminLink"></span></p>
you are specifying text sizes using inline styling which will override your style.css. as a rule you should not use inline styling, so try to use your style.css to define text sizes. do a view source and you will see the different classes used and where you have defined text size.
also noted this in your head tag. is this related to a style sheet? as you can see the link is not complete.
<link rel="stylesheet" type="text/css" media="all" href="http://www.jaraguaturismo.com.br/themes/jguatur/.css" />