Hey!! im using a simple code, but i need help fitting the background so that it lines up correctly with the boxes, may i get any help with it? id also appreciate knowing how to move the column if needed? Also if possible, id like scrolling, but its all good if thats too much!
here it is for context,!!
<style>
html {
background-color: ; background-image: url('https://i.imgur.com/K3ynxXL.png'); background-attachment: fixed; background-repeat: no-repeat; background-position: center; }
a:link, a:hover, a:visited { text-decoration: none; color: ; }
{ width:325px; height: 625px; overflow: auto; }
</style>my suggestion would be to remove the top navigation entirely by adding {display: none;} as it can be difficult to offset a background image like that. if you'd like to keep the nav at the top then i'd suggest adding your background image into it's own div and manipulating it's position that way. add top:0px;left:0px; to and change the values there to line it up where you want it. if you have the height of column2 already set to match the height of the box on the background that it should already scroll on it's own once the content in column2 reaches past that height. hope that helps a bit!