2

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.

Fred007
  • 81
  • 1
  • 10

1 Answers1

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