Adding the following to the css [background-color: transparent; position: relative; z-index: 1;] works with IE 7. In FF, the hyper link TOP does not work.
Any other suggestion to make the hyperlink function in FF.
HTML Code:
<h2>Understanding the "Equal Throw Method" <a name="understanding_equal_throw_method" id="understanding_equal_throw_method"></a></h2>
<div class="tothetop">
<p><a href="#equal_throw_method_page">TOP</a></p>
</div>
Code:
#rcontent h2 {
padding: 1.5em 0em 1.5em .5em;
font-size: 1.1em;
background-color: transparent;
position: relative;
z-index: 1;
}
.tothetop { /*Highlights the H2 headings*/
font-size: 0.75em;
color: #cccccc;
background: #CCCCCC;
margin: -4.2em -.85em 0em -.7em;
padding-right: .5em;
text-align: right;
}
.tothetop a{
text-decoration: none;
}
Bookmarks