[ad_1]
Here is the page that I duplicated: [https://downandderbyboston.org/])
Here is the page with the title: [https://downandderbyboston.org/home-page-march-2023/])
I went into additinal CSS to add this code:
**.entry-title {**
**display: none;**
**},**
and nothing has happened. Any advice would be greatly appreciated. Also, I am using WP Bakery.
[ad_2]
I’m not sure where you got .entry-title from as that’s not anywhere on the page that I see.
If you’re trying to remove the title from your second link ), this will do it:
#page-1471 .page-header h2 {display:none;}
The `entry-title` class doesn’t exist on that header
“`
<div class=”page-header”>
<h2>Home Page March 2023</h2>
<div>
“`
Is what’s shown in DevConsole. Not sure I’d set `display:none` on the `page-header` though, as I would bet that’d affect other pages. I’d use DevConsole to get the ID so you can add more specificity to the style.