Hey, Im just looking for some advice on how to properly place the image above the font and keep it responsive no matter the size of the screen. Just need some direction on layout and position.
Hey @dalton_dom, the behaviour can be achieved with position
attributes for the elements. Since you have not provided a read-only
link, I will assume the structure to have this working for you.
Let’s say this is your navigation structure:
Navigation
••• Nav Links
•••••• nav__link_1 Works
•••••• nav__link_2 Projects
••••••••• image
•••••• nav__link_3. Contact
- Select your
nav__link
’s and set their position asrelative
from the styles pane on the right hand side. - Select your
image
and set its position asabsolute
. Since you set the parent, i.e. thenav__link
as relative, the absolute positioning of theimage
will be in relation to its parent. - You can now adjust positioning of the
image
within the absolute positioning options and I would recommend to use%
's as they would be consistent positioning in different viewports rather thanpx
’s