1.Experience
If you would like publish a post and if this post writings is short, your footer will rise to the top.
Solving:
We will use “style.css” in wp-content/themes/zalive to customize. Another way, we can use “style.css” via admin panel of our wp web side. Appearence->Editor.
Now, find #footer. we will see this code:
#footer{background:rgba(68,68,68,0.88);filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#E1444444,endcolorstr=#E1444444);padding:10px;color:#7f7f7f;position:relative; bottom: 0; left: 0; right: 0;}
We have to change with this(position have to be fixed):
#footer{background:rgba(68,68,68,0.88);filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#E1444444,endcolorstr=#E1444444);padding:10px;color:#7f7f7f;position:fixed; bottom: 0; left: 0; right: 0;}