Can you provide a link to your site?
More specifically, the link of the said page and what title.
Thread Starter
CBKat
(@sohkat)
Thread Starter
CBKat
(@sohkat)
You can see in orange it says Photo Gallery, I’d like to remove that as there are breadcrumbs being displayed below it that say it as well. No need to have two
This isn’t working on yours because you have <div class="post"> and no post ID in there. You could edit your – page template, was it? – and put this in there <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> then style in your CSS as you described.
Thread Starter
CBKat
(@sohkat)
So, replace <div class=”post”> with <div id=”post-<?php the_ID(); ?>” <?php post_class(); ?>> then change that CSS bit I posted above?
Yes, try that – but of course, your page ID could be different than 982, so use the real number 🙂
Thread Starter
CBKat
(@sohkat)
I was finally able to try this out today – with the correct post ID. And it didn’t work. Any other suggestions?