I'd like to use image rollovers for the links in #access, and it looks like each link needs to be wrapped with <span>
I've looked at a bunch of the other topics on the board about this and the best solution I can find is to edit the file:
themes/thematic/library/extensions/header-extensions.php
I edited lines 356 and 357 from this:
function thematic_page_menu_args() {
'link_before' => '',
'link_after' => ''
to this:
function thematic_page_menu_args() {
'link_before' => '<span>',
'link_after' => '</span>'
It works perfectly, but I'd like to find a way to do it in my child theme, rather than in the parent theme. Nothing happens when I try to make the same edits to this file:
themes/myChildTheme/library/extensions/header-extensions.php
Does anyone have a suggestion on way to do this in my child theme?
Thanks for your help!