• Does anyone know how to change the footer for WP fanzone with the custom css plugin? I’m attempting to do this without having to create a child theme. Thanks.

Viewing 6 replies - 1 through 6 (of 6 total)
  • Can you be a little more specific? What exactly do you want to change? Font color and size? Background color? Or are you referring to the content (e.g., Powered by WordPress). You can change just about anything through a custom CSS plugin. You can hide the existing text, and even add some text, via CSS, but there are some things you can’t add, like links or any other HTML elements.

    Thread Starter jbenedick

    (@jbenedick)

    All I want to change is the content and put in my own copyright line.

    I tried it already and for reason I could only change the footer on the main landing page. All of my other pages had the original footer.

    Sorry, I should have asked in my original post, but could you please post a link to your site so I can see what changes you tried to make? Thanks.

    Thread Starter jbenedick

    (@jbenedick)

    Sure, sorry about that. The site is https://www.wealthmanagementteacher.com.

    I simply want the footer to say: “Copyright ? 2015 Wealth Management Teacher – Solarsteinn Holdings LLC. All Rights Reserved.” on all pages.

    Try adding this in your custom CSS plugin:

    #colophon .col-md-12 {
       display: none;
    }
    #colophon .site-info .row:after {
       content: 'Copyright ? 2015 Wealth Management Teacher - Solarsteinn Holdings LLC. All Rights Reserved.';
    }

    Note: it looks like you have some unusual code in one of your custom CSS files. It has a line of code that looks like this:

    <?php _e('Copyright ', 'wp-fanzone'); <?php echo __('&copy; ', 'wp-fanzone')

    You really shouldn’t be putting PHP code in a CSS field.

    Thread Starter jbenedick

    (@jbenedick)

    Thanks so much CrouchingBruin! It worked! I’ve been trying to do that for days.

    Also, I deleted out the custom css code I had tried to place in there prior per your recommendation.

    Thanks again for all the help.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Custom CSS Footer’ is closed to new replies.