remove space and page title twice

Hi, thank you for the great theme.

I have two questions.

1 - There is a lot of space between the page title and the page content, how can I remove that space?

2 - The page title is repeated twice on my pages, how can I only have it show up once?

Example would be here: In The News – NYU Contract Faculty Unite, CFU-UAW – and screen shot attached.

Thank you for your help!

hey there

Please add this CSS in appearance - customize - additional CSS

.page-title-section {
height: auto;
padding: 40px 0;
}
header.entry-header {
display: none;
}

Thanks!
Colorlib Support Team

Thank you for your help. That worked, but I am still having some problems.

Thank you!

Hey there

  1. You can modify above code and change 40px to something small number :slight_smile:
  2. Add this code for your second question:

.post-content .entry-content .post-title {
display: none;
}

Thank you, unfortunately the code also removes blog post titles – I only want to remove page titles. Is there a code to only remove page titles?

Sorry for the million questions, appreciate all of the help.

hi

Sorry, try this one:

.single .entry-content .post-title {
display: none;
}