on my site:
http://depts.washington.edu/ophthweb/
I have some CSS/HTML accessibility code for screen readers. This code has a link that is rendered first
(located in ATO -> HTML Inserts: Body Top)
HTML Code:
<div class="skip"><a href="#content">Skip to Main Content</a></div>
HTML Code:
/* decorate the Skip to Main Content Link */ .skip a { padding: 0 0.5em; display: inline; z-index: 2; text-decoration: none; position: absolute; width: 14 em; left: -200em; }
HTML Code:
<a name="content"> </a> <?php bfa_post_bodycopy('<div class="post-bodycopy clearfix">','</div>'); ?>
Worked fine in 3.2.2.
What do I need to change?
-Bill