My nav bar correctly links to my ‘work’ section, but if I click ABOUT on the nav bar, it drops down to about 300px above the ‘about’ h2. I feel it may have to do with positions, displays? I can get the ABOUT anchored link to correctly go to the about section if I add
#about{
margin-top: 360px
}
Although this appears to be a poor patch on a larger problem with my construction. I’ve tried doing a lot of different things but I keep ending up with my work, about, and contact section starting to overlap into each other which I can’t understand either. The divs dont seem to be stacking properly or something. ANY help is greatly appreciated.
http://wrobbins.me is the site. Thanks.
The link takes you exactly to where the
aboutelement is, it’s just that the text in the element is pushed down by thejobelements in the block above.The problem is the
jobwrapelement. The floating elements inside it doesn’t affect its size, so it has the height zero.Add
overflow:hiddento the#jobwrapstyle, and it will contain its children, and theaboutelement will start below it.