Home > Software engineering >  Why my website footer looks different when I deploy it on server?
Why my website footer looks different when I deploy it on server?

Time:10-19

My website look good on localhost. All images file and content be in their place when I see from localhost but when I deploy it on server it looks like http://imatul.epizy.com/ . when I deploy it on server some images is not getting render on my website and in the footer section my text are not in there place where they should have, They moved upward from there desire position.

on local host it looks like enter image description here

CodePudding user response:

It is just because you need to give proper paths for the images as well as external css which are provided for those images. There are no designing issues.

CodePudding user response:

I don't know how your footer is supposed to be. But with overflow:hidden set on all elements as you did, there is no way we will see it:

* {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: hidden;
}

After if you are talking about the missing images then, it might come from a wrong path.

  • Related