How do I center a background picture vertically in html?
You could just set up a table or better yet, use css!
Use this CSS Style in your html page - or external .css file
<style type=“text/css”>
<!–
body {
background-image: url(<PATH TO FILE>);
background-repeat: no-repeat;
background-position: center center;
}
–>
</style>
Ahhh, thank you… you’ve answered my question as well.
:love:
no worries, glad to help. CSS is easy.