https://codepen.io/Djuzeppe/full/oprPbO/

why when i adding “A timeline” creates a free space on the right

Codepen link

That is mostly because of this part:

.logoposition3{
  margin-top:-1350px;
  margin-left:930px;
}

Don’t use that much of margin-left, the reason u had that free space is that the total width of elements exceeded total width of your screen. Also you should rely more on bootstrap classes when positioning, and avoid positioning like you did. Things may be centered and aligned nicely on your screen, but if someone has bigger or smaller screen it wont look that nice.

For a beginner you designed your tribute page nicely. Also few more hints: don’t use that much fonts (1-2 is enough, everything more than that is slowing down your page), and you have bunch of free space on the bottom of your page too, its same reason just get rid of huge margin-top/bottom.

If you need further help feel free to ask! Happy coding :slight_smile:

1 Like