Custom Post Type Costumization

Hey there,

I am looking to be able to customize the template for a Custom Post Type.
I’m guessing I need access to the files & directory although I am un-sure of which template the Custom Post Type is using and how to get it to use another template?

Hi Nico,

Because what you are trying to accomplish requires a template customization, we would highly to suggest that you use a child theme. This allows you to make code changes that won’t be overwritten when an X update is released. After your child theme is setup, please review how we recommend making template changes in Customization Best Practices1.

You can then follow steps on this thread

Hope that helps

1 Like

Hey there,

I’ve gotten as far as being able to attach the Blank-4 template to the Custom Post Type.
Now there is an awkward empty space between the header/content. I can’t inspect it, either so I have no idea why it is happening.

Here is a photo:
This is the site: http://stage1.hightower.online/faculty/beverly-smithey/

Hi Nico,

It’s the top margin of your content, please add this CSS to Theme Options > CSS

    .faculty-template-default .entry-content {
     margin-top: 0 !important;   
    }

Hope this helps.

1 Like

Awesome, that worked, thank you!

Glad we could help,

Cheers,

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.