• Resolved RidgeKid

    (@ridgekid)


    Can the template footer be changed to provide a customized footer; e.g., © 2014 Site Title Designed by: Website Designer

Viewing 2 replies - 1 through 2 (of 2 total)
  • That’s not something we plan to build into the theme, but it’s something you can do with some modifications.

    There are a couple different ways you could do it. One would be using custom CSS if the footer text will be plain text. Here is an example you can start with:

    .site-footer .site-info {
    	display: none;
    }
    .site-footer:after {
    	content: "Copyright \00A9  Name.";
    	color: #888;
    	font-size: 11px;
    	margin: 1.5em 0;
    	text-align: center;
    	display: block;
    }

    To add custom CSS, you can use a plugin such as Jetpack which has a CSS editor built in.

    This explains how to install Jetpack:
    http://jetpack.me/support/getting-started-with-jetpack/#install-jetpack

    And this page has more details about how the custom CSS module works:
    http://jetpack.me/support/custom-css/

    Thread Starter RidgeKid

    (@ridgekid)

    Thank you for the support on this issue. It solved my problem:)

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