Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi Pimmesz,

    If I understand correctly, you would like to change the color of the featured post title that appears on your homepage?

    There are some plugins that are available that enable you to customize it, try doing a plugin search on “featured post” and select which would be suitable for the framework/theme you use for your site.

    Cheers!

    Hey there pimmesz,

    Hope you’re well today!

    I’ve checked your site and you could change the with some custom CSS. Please try adding the following CSS code in the style.css file of your child theme or if your theme doesn’t have custom CSS tab add it in your site using the following plugin:

    https://www.ads-software.com/plugins/simple-custom-css

    .home h3.hometitle {
    color: #000;
    }

    Replace the color hex value to the color of your choice. This should change the color of that title only on home page.

    Hope this helps ??

    Best regards,
    Bojan

    Thread Starter pimmesz

    (@pimmesz)

    @bojan

    That fixed it for the homepage!! Thank you!

    Apparently I have the same problem on the blog/news page…
    https://maillocker.eu/blog/

    Would the fix be:

    .news h3.hometitle {
    color: #000;
    }

    or

    .blog h3.hometitle {
    color: #000;
    }

    Thank you in advance ??
    Pim

    Hey there Pim,

    As I can see on your site all your titles are black so you can just add the following:

    h3.entry-title {
    color: #000;
    }

    This will change all the h3 titles on your site to black. You don’t have to target specific page or template. However if you want it only for this specific page then add this:

    .page-template-page-blog h3.entry-title {
    color: #000;
    }

    Hope this helps ??

    Best regards,
    Bojan

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Change Title of specific section on home page’ is closed to new replies.