Okay
  Public Ticket #2567287
Customize footer
Closed

Comments

  •  1
    Daniele started the conversation

    Hi, I would need to customize the footer structure by adding an extra row to the top. Doing some research I found the TEMPLATERA plugin which seems suitable for the purpose. Is it the right choice?

    Thanks in advance,

    Daniele

  •  2,963
    Andrew replied

    Hi Daniele,

    Thank you for reaching out to us.

    You can go ahead and use the plugin because it does not bring up any kind of conflicts from our end, however we have not done more tests on the plugin to know whether it is the best choice to use with the Salient theme.

    Kind Regards.

  •  1
    Daniele replied

    Thank you Andrew!

    Is there still another way to insert an extra row in the footer?


  •  2,963
    Andrew replied

    Hi Daniele,

    There is no other option to insert an extra row to footer.

    Try using the last row added to page to add your footer content. If you need to add widgets to the column then use widgetised sidebar element.

    Thanks.

  •  1
    Daniele replied

    Thank you Andrew.

    I thought about it but I need it for posts too. The real need is to insert a small logo in the center at the top of the footer on all pages of the site.

  •  2,963
    Andrew replied

    Hi Daniele,

    Try the following custom css and replace the url to where you have the sall logo:

    #footer-outer:before {
        content: url(http://your-site-url/wp-content/uploads/2020/07/line.png);
        display: block;
        position: absolute;
        left: 50%;
    }
    

    Thanks.

  •  1
    Daniele replied

    Thank you so much!