Copyright in Footer
-
I wanted to put copyright text into my footer, so created a text widget in the sidebar and used the following CSS to move it into the footer:
#text-4 {
color:white;
position:absolute;
margin-top:100px;
margin-left:-400px;
}However, it’s only showing on my home page, and not on my other pages. Have I done something wrong in the code, or missed something out?
The blog I need help with is: (visible only to logged in users)
-
You might try something a little different and use the “:after” code to place a little text after the text that’s already there.
Try this in the Bueno theme to see what I mean:
#copyright p:after { content: " © 2011 cup-let.com"; } -
-
- The topic ‘Copyright in Footer’ is closed to new replies.