Center Page Title for individual and all page at once

How can I center the title of a specific page? If possible I would rather add some custom css rather than change the main css file.

If it’s not possible to center the title for a single page, how would I center the title for all pages?

Thanks, Ron

Ron,

Please post your website URL and I will provide you with some examples how you can center titles for individual pages as well as entire website.

For now I mainly just want to center the title for this page we are using as the home page.

Wait I need to fix a broken file

@ronr

I see that you tried to modify copyright information in footer and failed with that. Original theme files can be downloaded from <a href=“https://github.com/puikinsh/Sparkling/” target="_blank>Github or WordPress.org

Thanks I fixed the file.

Now can you tell me how to center the title for this page we are using as the home page.

gothamcityventures.com

Thanks Ron

Ron,

You can center frontpage title by adding this CSS to Appearance >> Theme Options >> Other >> Custom CSS

.page-id-6 .entry-title {
    text-align: center;
}

This CSS code targets this page by its ID, so other pages are not going to be affected.

Let me know if this helps.

Thank you just what I needed.