On Saturday, May 08, 2010 8:05:52 pm Thierry Koblentz wrote: > > I have not been able to find a solution to my problem. I have added > > blank anchor tags like the one seen in the snip of code below. > > > > </ul> > > <a id="10" class="space"></a> > > You cannot use "10" here, check the last paragraph of section 6.2: > http://www.w3.org/TR/html401/types.html#h-6.2 > > > I want to drop the tag and have this: > > > > </ul> > > <p id="10">Since the early... > > > > This URL explains my problem with images. > > http://webpages.charter.net/jlgates/css.html >
With just the images, and no code, this is a little hard, but here's a guess: 1. Your header is position:fixed (or position: absolute), which means that it's out of the flow. 2. The id makes the content go to the top of the page, which is hidden behind the header. So you have a couple options, I think (untested, of course, since we don't have your code). 1. You may be able to put a margin on your <p> tags to buffer them. or 2. You could add a margin to your content div which keeps all of the content below the header. and then when things scroll to the top, it will be in the right place. ---Tim ______________________________________________________________________ css-discuss [[email protected]] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.org/policies.html Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
