Footer Customization

  • Unknown's avatar

    Hi, I’m using the Halves theme. I want to put a copyright notice and a disclaimer page link in the footer area but there is no footer editor in my dashboard or anywhere else. How do I do this?

    Thank you!

    The blog I need help with is: (visible only to logged in users)

  • Hi @larapalafox

    Please check if there is footer area in Appearances>Widgets.
    If yes, you can use the simple ‘Text’ widget for the footer and add your text there.

    If no, then you’ll have to add custom CSS code for a footer.

  • Unknown's avatar

    Hi @larapalafox, we can add a copyright to the footer with the following custom CSS, but we cannot add a link. You will need to use a custom html widget in the footer to do that since CSS cannot be used to add html.

    #site-generator:before {
      content: "My Copyright";
      display: block;
      color: #000;
      font-size: 110%;
    }

    I included some styling also, which you can use or not and edit as desired. Just edit the my copyright text between the quote marks.

  • The topic ‘Footer Customization’ is closed to new replies.