CSS Issues
Posted: Thu May 12, 2005 11:37 am
In relation to episode 83 ( http://www.slsd.org/teacher/washkod/foundation/ ) with the css issues, it can be easily fixed with a single line of CSS. I'm not entirely sure what the issue is officially, but unofficially it seems that the h2 tag is pushing the whole lot down... Fixed by the following:
Essentially what that says is "Resize the top border to 0 pixels for any h2 tags inside anything of the class 'content'."
Example of the solution is at <a href="http://ashley.cc/Test.htm">this location</a>. Hope that helps. :-)
Code: Select all
.content h2{margin-top:0px;}Example of the solution is at <a href="http://ashley.cc/Test.htm">this location</a>. Hope that helps. :-)