Size of title font - how do you adjust?

Hi –

I just purchased the XPro theme and I am using the “Icon” Stack. I would like the H1 tag / the titles of the blog posts to show up smaller then they currently are. I tried inputting custom css and have been successfully able to change the color of H1 but the size of the title will not conform to my custom css, if you look here: http://longevitycolorado.com/index.php/2018/04/30/longevity-project-part-1-why-colorados-mountain-town-residents-live-longer/

The title of the page is very large but the text I added within the post in the size (20px) that would like my titles to show-up in. How can I over right the size of headers for the titles of my page within your theme.

Thank you

Hello @Olson,

Thanks for asking. :slight_smile:

I see a under construction page on your website. Please try adding following CSS under Pro > Theme Options > CSS:

.single-post .entry-title {
    font-size: 300% !important;
}

Thanks.

Hey Great. That worked really well. Can you give me the code to control the size of the header font when they list in a category? Link http://longevitycolorado.com/index.php/category/health/

Hi there,

Please try:

.archive .entry-title {
    font-size: 300% !important;
}

Hope this helps.

Thanks again! This advice worked as well. :slight_smile: Just wondering if you know a way to change the word “blog” to “article” in my breadcrumb chain when they display to my users - any ideas?

Thanks again.

Hi There,

To change those information, you can copy the following function x_breadcrumbs_data on x/framework/functions/global/breadcrumbs.php into your child theme’s functions.php file.

Then you can customize the labels accordingly.

Hope that helps.

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