HTML interesse |
|
Ik heb een layout omgezet naar WordPress-theme, en nu wil 1 stukje tekst de CSS neit pakken.
Het gaat om dit stukje HTML (php hoef je niet op te letten):
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Ouder') ?></div>
<div class="alignright"><?php previous_posts_link('Nieuwer »') ?></div>
</div>
<div class="alignleft"><?php next_posts_link('« Ouder') ?></div> <div class="alignright"><?php previous_posts_link('Nieuwer »') ?></div>
Nu heb ik deze CSS hierbij:
a.navigation:link, a.navigation:visited {
font: 18px "Trebuchet MS";
color: #000000;
font-weight: bold;
}
a.navigation:hover {
font: 18px "Trebuchet MS";
color: #000000;
font-weight: bold;
}
a.navigation:link, a.navigation:visited { font: 18px "Trebuchet MS"; color: #000000; font-weight: bold; } a.navigation:hover { font: 18px "Trebuchet MS"; color: #000000; font-weight: bold; }
Alleen pakken die links NIKS van die css! Of ik deze CSS hier wel of niet neerzet, het maakt niks uit...
Heb al van alles geprobeerd.. maar het wil maar niet lukken. Wat is hier aan de hand?
|