Quote:
Originally Posted by captain_jack
Hello all
Im having a time trying to get a header image to show up in place of the color option
Its been years since i used vbull
is there a specific place to upload the image to?
How long of a path should i use to call it up?
any help would be appreciated
|
Sorry your having difficulties. My favored way to do that is by way of CSS. I.E...
Code:
body {
background: #040410 url(https://domain.com/images/image.png);
background-repeat: no-repeat;
background-position: center top;
}
Hope this helps.