• hi, i am working on zalive theme, i would like to write my experiences here. So you can edit your theme easily.
    Sincerely.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter telatabi

    (@okulsayfam)

    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;}

    Nice ??

    Great, thanks. My original line of code in style.css didn’t include position:relative; bottom: 0; left: 0; right: 0; so after adding it in (and changing relative to fixed) it worked.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Customize Zalive Theme with my experiences’ is closed to new replies.