Link font size - Joomla! Forum - community, help and support
hi there!
i set links @ 1 of site's page , font size bigger other content, how can change it?
http://www.welltrainning.pt/formacao/nao-financiada
thanks
i set links @ 1 of site's page , font size bigger other content, how can change it?
http://www.welltrainning.pt/formacao/nao-financiada
thanks
reviewed site , looks bigger font shown links due following css entry available in file template.css located in directory \templates\welltrainning2\css.
further review revealed font-size 8pt , 6pt being used in other text in table shown below (example shown first data row):
if want link have same size alter code link shown below.
hope helps.
note: make copy of files before editing them.
code: select all
.art-postcontent, .art-postcontent li, .art-postcontent table, .art-postcontent a, .art-postcontent a:link, .art-postcontent a:visited, .art-postcontent a.visited, .art-postcontent a:hover, .art-postcontent a.hovered
{
font-size: 18px;
}
further review revealed font-size 8pt , 6pt being used in other text in table shown below (example shown first data row):
code: select all
<tr>
<td><span style="font-family: arial,helvetica,sans-serif; font-size: 8pt;">formação pedagógica inicial de formadores (<a href="/formacao/nao-financiada/46-descricao-curso-formacao-formadores">mais informações</a>)</span></td>
<td style="text-align: center;"><span style="font-size: 8pt;"> b-learning</span></td>
<td style="text-align: center;"><span style="font-size: 8pt;"> beja</span></td>
<td style="text-align: center;"><span style="font-size: 8pt;"> 90h</span></td>
<td style="text-align: center;"><span style="font-size: 8pt;"> </span></td>
<td style="text-align: center;"><code><a href="/formacao/nao-financiada/40-inscreva-se/59-inscricao"><span>inscrição</span></a><span style="font-size: 6pt;"> <br></span></code></td>
</tr>
if want link have same size alter code link shown below.
code: select all
<a href="/formacao/nao-financiada/46-descricao-curso-formacao-formadores" style="font-size: 8pt;">mais informações</a>
hope helps.
note: make copy of files before editing them.
Comments
Post a Comment