Is there a way to move static positioned header? (like top:50px; in css) I need to move my static header from top for like 50px; Is there a way? P.S: I need to have static positioning, I cannot change that.
Asked
Active
Viewed 19 times
1 Answers
1
You can use top padding to add space between the header and the element above it. For example:
.header {
padding-top: 50px;
}

Josh
- 241
- 1
- 8
-
1this is what i was looking for lol I totally forgot about margin. Thank you! – Fred007 Jul 19 '16 at 21:28