Option to Remove Page Title and Description

Gathering votes

There is too much going on a page. I want to remove the page title and description. However, using an empty value still leaves the border. It would be great to check if there are values and then remove them or just add them to the metadata (SEO).

Nitai

11 months ago

Ruben

Hi Nitai,

This is probably easiest to be adjusted with custom styling (see branding and then scroll down to the custom SCSS area).

You can use something like this:

#updates { /* The ID of your tab */
  .card:first-child {
    display: none;
  }
  h1 {
    display: none;
  }
  .tab_description {
    display: none;
  }
}

Ruben

0    11 months ago    Reply

Comment must be at least 20 characters.
Cancel
Nitai

It shows the CSS on top of the page and, funny enough, hides it...

0    11 months ago    Reply

Comment must be at least 20 characters.
Cancel
2 votes