Yes, load_header() function in bb_functions.php is the place where you can add additional class to the links. But this will destroy one of your core files.
If you have enough patience and experience with CSS, it's possible to define styling for links in the definition of table cells' classes (but general "A" class should be removed in that case).
For example, all menu links are inserted in the table cell with class "caption2". Edit bb_default_style.css, remove all general "A" attributes, and paste, for example:
td.caption2 A:link, A:active, A:visited { color: #006699; text-decoration: none; }
td.caption2 A:hover { color: #0083C5; text-decoration: none; }
This will define A colors for table row with class "caption2". You need to do the same for all table rows where links might appear (classes ".tbCel1", ".tbCel2", "caption1", "caption2", "caption3", etc. until "caption6"; also as "tbTransparent").
This also will be not core-destructive solution ;-) |