Custom Footer Header

  • Unknown's avatar

    Hi, I’m looking to place image credit in the footer for our blog: https://sjsuwritingcenter.wordpress.com/

    I checked out a similar and recent post (https://en.forums.wordpress.com/topic/customizing-footer-5/), but the code is not working for my blog.

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

  • Hi there,

    CSS is theme-specific, so a solution that works for one theme won’t work for another.

    Please try this code:

    /* 
    Add text to infinite scroll footer 
    */
    div#infinite-footer .blog-info::after {
    	content: "A Custom text here";
    	white-space: pre;
    	font-size: 12px;
    	color: #888;
    }

    This will add the text below your site title in the floating footer on the front page, but the text is styled the same as the “Blog at WordPress.com” text. Replace “Custom text here” with the text you want, but make sure to not remove the “A ” from the code. That’s what’s ensuring the text appears on a new line.

    And to add the text on single posts and pages:

    /*
    Add text to static footer
    */
    div.site-info::after {
    	content: "A Custom text here";
    	white-space: pre;
    }
  • The topic ‘Custom Footer Header’ is closed to new replies.