Image obstructing my navigation bar and the image above. Basic HTML/CSS issue -


i have image on site want set it's own entity can freeform , adjust without conflicting other elements, have it's css

#backgroundimage{ position:absolute; float:right;     top:0; left:50%; } 

using fixed , absolute positions cause image stack level nav bar, other position cause nav bar jump right under image i'm using (it's picture of moon) cutting off image, text, it's behind nav bar.

things have tried: putting inside of have no idea how work out, , tried floating contained inside of div.

i have read comments putting on z or y axis, have no idea means, i'm still reading or trying find me understand it.

this school project, still basic in field.

use z-index of -1:

#backgroundimage {     z-index: -1; } 

also, it's not recommended name elements camel-case - use dashes instead.


Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -