I am trying to put a img h1 and nav on the same line. I have managed to put the img and h1 where I wanted but can;t seem to move the nav to the right of page. i have tried the float property but doesnt work. Is there another way?
Depends a lot on the layout you want to create (Grid, Flexbox…etc…etc…)
The most straightforward implementation of a side nav is by giving it a width
and a position
property.
Something like
position: fixed;
width: 25%;
But you can play around with it