I have tried to create an anchor point using:

<a href="index-xxx.html#reference-name"> and

<a name="reference-name">

The problem is I have a floating margin on the top and the anchor point goes to the top of the page hiding the top of the text.

Is there an easy way to add a relative spacing to the top margin using HTML?

I'm new to this and using a template that I found online. I have since found that it would have been easier to start from fresh instead of using the template but I am too far down the line now, and I don't really understand how to change the CSS to do this. Is there an easier answer?

Many thanks in advance to someone that has been searching for hours for the answer.

link|improve this question
I'm not sure there's enough code here to provide a meaningful answer. Can you provide a bit more code (HTML and CSS) for "i have a floating margin on the top and the anchor point goes to the top of the page hiding the top of the text"? – James Skemp Mar 29 '11 at 12:12
sorry im that new i wouldnt know what to send... still learning – matt Mar 29 '11 at 12:27
basically i have a header menu on each page of the site that is about an inch thick, ive created an anchor point that seems to work fine but when the link takes me to the anchor point it takes the link to the very top of the page and i need the link to be an inch down the page – matt Mar 29 '11 at 12:29
sorry so that is not hidden by the menu – matt Mar 29 '11 at 12:29
is there a way to put something by the anchor point that makes the text 200px down the page for exapmle – matt Mar 29 '11 at 12:30
show 13 more comments
feedback

1 Answer

up vote 0 down vote accepted

EDIT: I've updated based upon the code supplied.

Basically we've got something to the effect of this:

<!DOCTYPE html>
<html>
<head>
<title>Untitled Document</title>
<style type="text/css">
    #main {
        min-width: 980px;
        margin: 0 auto;
        font-size: 0.75em;
        padding:101px 0 37px 0;
    }
    header {
        height:101px;
        background:url(../images/footer_tail.jpg) left top repeat #0d0d0d;
        position:fixed;
        top:0;
        left:0;
        width:100%;
        z-index:100;
    }
    footer {
        overflow: hidden;
        position:absolute;
        bottom:0;
        left:0;
        width:100%/*; height:37px*/;
        background:url(../images/footer_tail.jpg) left top repeat #0d0d0d;
        color:#9d9d9d;
        text-transform:uppercase
    }
</style>
</head>
<body>
<div id="main">
    <header>...</header>
    <section id="content">... with <a name="blah">anchor</a> a couple paragraphs down the page</section>
    <footer>...</footer>
</div>
</body>
</html>

As written the anchors links are buried under the top navigation. It seems the only solid fix is to use 'CSS frames' to get the content to display correctly, which requires the following CSS tweaks:

#main 
{
    padding:0 0 37px 0;
}
section#content
{
    position:fixed;
    top:101px;
    width:100%;
    bottom:37px;
    overflow:auto;
}
footer 
{
    position:fixed;
    height:37px;
}

So I've removed the top padding from #main.

Then I made the content and footer fixed position. Because of this the content has to be moved down 101px, hence the top.

I then had to give the footer a height, and then put that same amount as a bottom on the content.

Overflow auto gives us scrollbars, and width of 100% puts those bars in a reasonable place.

Tested on IE 9, Chrome 10, Firefox 4, and Opera 11.

Edit 2: And unfortunately I can't find much online about this particular method. Eric Meyer talks about it in Smashing CSS. It doesn't look like any of the existing resources online test for how anchor links will work with the content, which is pretty unfortunate.

link|improve this answer
James, many thanks for your help it has been much appreciated, only problemn is i think this is a bit beyond my level at the moment as i dont really understand what to do - not your fault im just very new to this. – matt Mar 29 '11 at 14:39
I'll defer to you, but based on your situation, if you want to shoot me an email at StrivingLife [at] gmail [dot] com with the CSS and HTML I can give this a look tonight after work. We can get that working and update the question/answer accordingly. – James Skemp Mar 29 '11 at 16:19
I had mentioned a possible JavaScript way, in case you want the scrollbar to be completely at the top. Looks like it was dynamicdrive.com/forums/showthread.php?t=26767, but fair warning that I haven't tried this myself. – James Skemp Apr 3 '11 at 1:09
thanks very much for your help james it is much appreciated. – matt Apr 5 '11 at 12:08
No problem Matt :) Enjoy Stack Overflow! – James Skemp Apr 5 '11 at 12:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.