Remove entire section of Site Title and Site Tagline

Hi Movin,

  1. You guys are awesome for helping us understand your awesome theme!!!

  2. Kindly help me remove the Site Identity section with the help of Custom Css.
    I really don’t need a section showing the Site Title and Site Tagline on the homepage.

For example, I’ve highlighted the area I was trying to remove in the picture attached.

Best Regards
Adam

Hi Adam,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS

body.home #masthead > .container {
    display: none;
}

The above CSS code will remove it from home page only, if you want to remove it from all pages then use the below CSS code instead.

 #masthead > .container {
    display: none;
}

Best Regards,
Movin