tags:

views:

15

answers:

2

I need to move all bookmarks inside the html page bit down. Is that doable?

something like that

<div class="anchordown" style="position:relative; top:-80px;">
  <a name="learn">Learn bookmark</a>
</div>

but it doesn't work for me. The actual bookmark doesn't move at all

EDIT

I want to have the inside bookmark #learn to be displayed bit down not at the top of the page if I click so http://address/page.html#learn

A: 

You could try a margin or padding, like this:

<div class="anchordown" style="margin-top:80px;">
  <a name="learn">Learn bookmark</a>
</div>
Andrew Cooper
+1  A: 

Here is another alternative

<div class="anchordown">
  <a name="learn" style="padding-top:80px;" >Learn bookmark</a>
</div>
JapanPro
thank you @JapanPro, works nicely. I don't even need the div
Radek