Cant move the whole navigation panel that is from Home till About me cant move it I want to take it little up that is in the center of the navigation panel

Hi @vollendsouza69608

I assume you are trying to adjust the positioning of your navigation panel. To move the navigation panel up and center it, you’ll need to modify the CSS styles associated with it. Try making adjustments to the padding, position and alignment in the CSS file. You can take reference from the below code snippet.

.navigation {
  text-align: center;
  padding: 10px;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
}


Please do share you code snippet, this will enable us to guide you better. Try this, if you still find any issues please feel free to get back to us.