|
1) When having an h2 be a link, does the h2 go inside the <a> tag, or does the <a> tag go inside the h2?
this is right
<h2><a href="">How to Take Action Now</a></h2>
but this is better
<div id="highlight"><a href="">How to Take Action Now</a>...</div>
where "highlight" does whatever h2 would do. Menu items are not headlines.
2) How to I get my left menu to go all the way down?
add this to #container in css
height:100%;
[edit] oops #2 is wrong. CSS people? Help?
|