2013-01-18, 09:40 PM
OK, so here's the deal. Since I'm using a fixed header, when you click, say, "last post", or anything referencing #pid you get this, covering the username and date.
![[Image: 308gi.png]](https://camo.mybb.com/43a4c93a22bd748e8ded860465c116dfac92d7f0/687474703a2f2f692e696d6775722e636f6d2f33303867692e706e67)
The result should be, ideally, like this:
![[Image: vCpLt.png]](https://camo.mybb.com/bb751b70a53c736f2c8a1b6e25caa03c5702fe1b/687474703a2f2f692e696d6775722e636f6d2f7643704c742e706e67)
Now, this is an easy fix if you know the ID/name of the anchor you are trying to link to by using a pseudo-element.
source: http://nicolasgallagher.com/jump-links-a...sitioning/
The problem is that since the anchor for each PID is unique, there's no way to target them all this way. Does anyone have any solution for how I could do this?
The result should be, ideally, like this:
Now, this is an easy fix if you know the ID/name of the anchor you are trying to link to by using a pseudo-element.
#target:before {
content:"";
display:block;
height:50px;
margin:-30px 0 0;
}
source: http://nicolasgallagher.com/jump-links-a...sitioning/
The problem is that since the anchor for each PID is unique, there's no way to target them all this way. Does anyone have any solution for how I could do this?