I am trying to hide the page title on just the page display it's self.
Here is the code for the page:
<div class="post">
<div class="entry">
<h1><?php the_title(); ?></h1>
I have tried these two variations:
#post-836 .post h1.entry {
display: none;
}
#page-836 .post h1.entry {
display: none;
}
The number for the page is 836. Thanks in advance!