[Solved] How to offset the content


I understood that you want to move all the site 100px down except the navigation bar, is it correct?

If so, wrap all the content in a tag and give it an offset with

.wrapper{
    margin-top: 100px;
}

Is this what you’re looking for?

solved How to offset the content