Situation: I have a JFrame
and I have managed to import the GIF and display it in the Main Panel however it moves all of my other panels down, causing my GUI to be
You can do it in the style.css so this would be for the whole body.
body {
background-position: center center;
background-image: url('../images/MyGif.gif');
background-repeat: no-repeat;
}
or create a class for it
.frame{
background-position: center center;
background-image: url('../images/MyGif.gif');
background-repeat: no-repeat;
}