You can try to access a element on CSS:
Code:
a{font-weight:bold;text-decoration:none;}
But that would be applied on all the <a> elements in your page.
If you wish to style only the two links, then you might give it a go to use JS instead:
Code:
<script type="text/javascript">
window.onload=function(){
for(var i=0;i<2;i++){
document.getElementsByTagName('a')[i].style.fontWeight='bold';
document.getElementsByTagName('a')[i].style.textDecoration='none';
}
}
</script>
This changes the font-weight to bold and removes the underline of the first 2 links on your page.
Hope it helps.
Bookmarks