• Hello guys, I need a little help.
    I have a website with Access Press Lite theme, and I’m trying to remove the entry title from pages. For example the page “Visit My Country” shows the text “Visit My Country” in top of the page, and I don’t like it. I tried to use this code

    .entry-header {
    display: none;
    }

    and it works, but the problem is it removes also every single post titles inside “Visit My Country” page. So if inside the pages are 10 articles, their titles have been deleted as well with this code. Is there a way to delete only entry title from pages? (I call it “entry title” because if I right-click on it it says “entry title”). Many thanks

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hi there,

    Yes, with CSS you can always target specific locations/incidences – you just need to target more specifically in your code. What you’ll want to do is “inspect element” and see what other classes apply to just the occasion of the title that you’re trying to remove – once you’ve identified a unique class for that occasion, you would call that, along with the .entry-header in order to make just that instance not display.

    It would look like this:

    .some-class .post-image {
    display: none;
    }

    -Darren

    Shane

    (@richardkanes)

    Hi there.

    Thank you for writing in.

    Many thanks to Dbking for the awesome response on above the issue.

    Choku2009, can we have your site url so that we can try to inspect the code for you?

    Thanks.

    Thread Starter choku2009

    (@choku2009)

    Good morning guys, many thanks for your answers. Richard where can I send you my url? If I write it here it will appear on google results I suppose…

    Shane

    (@richardkanes)

    Hi there.

    You can simply post here. Or above here is link button. You can write here too.

    Thanks.

    Thread Starter choku2009

    (@choku2009)

    Many thanks for your kind answer. If I write url here, will it appear on google results?

    Shane

    (@richardkanes)

    Hi there.

    If your are feeling uneasy to post the site url then,
    you can simply mail to us at [email protected]

    Please don’t forget to mention the issue with the site url.

    Thanks.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘How to remove Entry Title from pages’ is closed to new replies.