how to add a footer with (photographer) theme

  • Unknown's avatar

    I wanted to know what the css is code will be to add a footer at the bottom that says my name,copyroght, etc. I went in to previous threads and the css codes in there doesn’t work on mine unfortunately.

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

  • Unknown's avatar

    Hi there, you can use the following to add your copyright to the footer. I’ve set it to be before the existing footer credits, but you can change the “before” to “after” if you want it below the existing credits. I also included a variety of styling declarations in case you want to change color, size etc. Delete any of the declarations you do not use. The line-height I included to space the existing down away from the added content. Edit the “name copyright” in the content declaration as desired.

    #footer .info:before {
        content: "Name Copyright";
        line-height: 24px;
        color: #FFFFFF;
        font-size: 120%;
    }
  • Unknown's avatar
  • Unknown's avatar
  • The topic ‘how to add a footer with (photographer) theme’ is closed to new replies.