Hello!
I have a question about targeting divs on another page. It seems like it's halfway working for me.
If you take a look at the header where I have "tab1, 2, 3", those are set up like this
http://www.studio2055.com/dev/aero/?...eadership=test
PHP Code:
add_action('genesis_header', '_home_navigation');
function _home_navigation() {
echo '<ul class="tabs">
<li><a href="http://www.studio2055.com/dev/aero#home-pane-one">Tab 1</a></li>
<li><a href="http://www.studio2055.com/dev/aero#home-pane-two">Tab 2</a></li>
<li><a href="http://www.studio2055.com/dev/aero#home-pane-three">Tab 3</a></li>
</ul>';
}
However, when you click on any tab, it automatically defaults to tab 1 although i've called out in the link to target the id of a specific div.