Spun Theme: adding copyright and how to center titles

  • Unknown's avatar

    Hi, there I wanted to know if anyone can help me add my copyright info © 2015 Michael Encarnacion to the bottom of the page and also how do I center my titles for each page instead of having it on the left hand side.

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

  • Unknown's avatar

    Hi xphotographme,

    Something like this should take care of the alignment.

    h1.entry-title {
    	text-align: center;
    }

    Have you considered using a Text Widget for the copyright information and placing the widget in the footer area?

  • Unknown's avatar

    Thank you!! that worked.

    And no not yet but I will try it right now. In the widgets section all I see is “text” and it only gives me three options to put: sidebar 1, sidebar 2, sidebar 3.

  • Unknown's avatar

    Good deal!

    Just put a Text Widget in one of those sidebar areas and then add your copyright information in widget itself.

  • Unknown's avatar

    The information I typed in the sidebar doesn’t show at the bottom. When you scroll down you see a “plus” and when you click on that that’s when the info reveals itself. I’m trying to have it show without having to click anything.

  • Unknown's avatar

    The information I typed in the sidebar doesn’t show at the bottom. When you scroll down you see a “plus” and when you click on that that’s when the info reveals itself. I’m trying to have it show without having to click anything.

  • Unknown's avatar

    I see now that the “plus/minus” symbol simply shows/hides the widget area. You could try the following code, however, I’m not sure if this addition would break a condition of the Terms of Service for using WordPress.com. Hopefully a staff member will weigh-in and provide clarification on whether or not appending text is allowable. Staff may just say that you need to find a different place for your copyright information.

    div.site-info:after {
      content: " | © 2015 MICHAEL ENCARNACION";
    }

    Caveat: This code may or may not work for all browsers.

    Attribution. Automattic reserves the right to display attribution links such as ‘Blog at WordPress.com,’ theme author, and font attribution in your blog footer or toolbar. Footer credits and the WordPress.com toolbar may not be altered or removed regardless of upgrades purchased.

    https://en.wordpress.com/tos/

  • It’s fine to add additional information to the existing footer via CSS.

  • If you prefer, this should keep your widget area open permanently and remove the +/- sign:

    #secondary.widget-area {
      display: block;
    }
    .sidebar-link {
      display: none;
    }
  • Unknown's avatar

    Thanks Kathryn — good to know.

  • The topic ‘Spun Theme: adding copyright and how to center titles’ is closed to new replies.