Trying to Add text to Footer on Visual Theme
-
I am trying to add text to the bottom footer information. I don’t want to remove the “customized visual theme” info/link etc, I simply wanted to add some text before them (specifically the ISSN number of the journal).
I originally had searched and fiddled and had accomplished it, but for some reason the info has since disappeared. So I’d like actual guidance on the proper css coding for this.
The link is: http://www.childlitunjournal.com
Thanks
The blog I need help with is: (visible only to logged in users)
-
Hi there, you currently have this in your custom CSS.
.site-info a[rel="generator"]:before { content: "ISSN 2331-6896. | "; }Change that to the following to add your text before the site info in the footer.
.site-info:before { content: "ISSN 2331-6896. | "; display: inline; } -
Thank you so much! I’m just learning this as we go along, so this was a great help. It worked perfectly.
-
- The topic ‘Trying to Add text to Footer on Visual Theme’ is closed to new replies.