Photographer Theme Footer Text
-
Hi,
I want to add two lines to footer text in the Photographer theme. I found what is below while searching the forms, which works great for one line, but how can I add a 2nd line?
#footer .info:before {
content: “text here”;
line-height: 24px;
color: #FFFFFF;
font-size: 120%;
}Thanks!
The blog I need help with is: (visible only to logged in users)
-
Hi there, what we can do is use the first-child pseudo selector to add the text above the first line of WordPress footer credits. Add this and see what you think. You can also add a font size declaration and color if you wish.
#footer .info p:first-child:before { content: "This is a second line"; display: block; padding-bottom: 10px; } -
-
- The topic ‘Photographer Theme Footer Text’ is closed to new replies.