New page problems

Hi i’m using an offline version of the illdy theme so can’t show the page online, but the question is:

  1. How do I remove the logo: facebook, twitter etc. which is auto-generated when I create a new page (Not the front-page)?
  2. How do I remove or color-change the title which is placed on the header at the new page?

Hello there,

I hope you are doing well today.

The social media icons are created with the aid of a third party plugin and I would not be able to provide code to remove that section without having the page available.

You can use the following CSS code to change the title color by going to Appearance > Customize > Additional CSS and pasting it there.

/*Title color*/
#header .bottom-header h1 {
    color: red;
}

Best Regards,
Support

Thanks a lot :slight_smile: That really helped.
the third party plugin was “Kiwi Social Share - Social Media Share Buttons & Icons”, which had installed itself. So you just need to know where to look :smiley:

I changed the CSS to:

/*Title color*/
#header .bottom-header h1 {
    color: red;
    opacity: .0;
}

to remove it.

Again… Thanks a lot.
Have a nice day :slight_smile:

oh… I didn’t see that the code also removed the title at the front-page. :confused: do you know how to only remove it at the new pages?