• novice212

    (@novice212)


    Hi,
    I would like to make some changes on the theme.
    I read some things here that have informed me , but I don’t succeed to identify the CSS lines to delete .
    If you could help me, that would be great!

    On the home page ,
    I would remove the button in the header search and thumbnails (above the title) the date that appears when you fly over the pictures.

    In articles
    I would remove the date , author , and footer rows “This entry was posted in ” and tags.

    Thank you !

Viewing 15 replies - 1 through 15 (of 18 total)
  • stephencottontail

    (@stephencottontail)

    Can you post a link to your site?

    Thread Starter novice212

    (@novice212)

    Hi,
    My website is not online for the moment. ?? But my theme is pictorio
    I found for remove the date and author in the articles.

    stephencottontail

    (@stephencottontail)

    You should make these changes in a custom CSS plugin. That way, if the theme is updated later, to fix a security issue or a bug or to add new features, you won’t lose these changes.

    In a single post view, to hide the text “This entry was posted…”, put this:

    .entry-footer {
    display: none;
    }

    As for your home page issues, I’m afraid I’m not sure what you’re referring to. Can you take a screenshot demonstrating what you’d like to remove and post it to Imgur or a similar image-hosting site?

    Thread Starter novice212

    (@novice212)

    Hi,
    I will serach a custom CSS plugin. I don’t know that.
    I will make a screenshot, yes. asap !
    Thanks for your answer

    Moderator Kathryn Presner

    (@zoonini)

    Looks like you got some good advice from stephencottontail on how to make CSS changes and remove the entry footer on single posts.

    On the home page ,
    I would remove the button in the header search and thumbnails (above the title) the date that appears when you fly over the pictures.

    To remove the date on the blog thumbnails, try adding this custom CSS:

    .home .entry-header .entry-meta {
      display: none;
    }

    If you’re trying to remove the header search box completely this should do it:

    .header-search {
      display: none;
    }

    If your goal is something else, a screenshot would indeed be useful so we can better understand what you’re trying to do. Thanks!

    Thread Starter novice212

    (@novice212)

    Thanks Kathryn and stephencottontail. I will try this asap !
    Thanks again !
    (I have screenshots but there we can’t post images. So… it’s not important i think)

    Moderator Kathryn Presner

    (@zoonini)

    Great, let us know how it goes.

    If you need to, you can upload a screenshot – in a graphic format like JPG, PNG, or PDF – in your Media Library, and provide a link so we can see it, or upload it with a service like Imgur or Snaggy.

    Thread Starter novice212

    (@novice212)

    Thanks Kathryn.
    I work on.
    For remove footer, it’s ok.
    But for the date in the thumbails in the home page, it doesn’t work. The header, the title deasppear to.

    Screenshots
    https://imgur.com/U1Xc61j,Q5pWQxx
    https://imgur.com/U1Xc61j,Q5pWQxx#1

    stephencottontail

    (@stephencottontail)

    To clarify, check out this screenshot: https://imgur.com/m8dGtXL

    Is this what you’d like?

    Thread Starter novice212

    (@novice212)

    Waouhhhh ! It’s that I would like, yes ??

    stephencottontail

    (@stephencottontail)

    Can you clarify what CSS code you used, then? The first bit of code that Kathryn posted should have deleted just the post date while leaving the title intact:

    .home .entry-header .entry-meta {
      display: none;
    }
    Thread Starter novice212

    (@novice212)

    With this code, all the information date + title have dispear.

    Moderator Kathryn Presner

    (@zoonini)

    It’s difficult to troubleshoot without seeing your site. The code above worked to remove the date from the demo site, as you can see here:

    Pictorico Your life in pictures at WordPress com

    Did you copy-paste the code?

    Thread Starter novice212

    (@novice212)

    I undestand taht it’s difficult, sorry.
    Yes i Copy paste the code.
    It ‘s okay , it’s not too bad , I’ll leave that way.
    Thanks

    Moderator Kathryn Presner

    (@zoonini)

    When you’re able to get your site up on a remote server do feel free to post again and I’ll be glad to have a look and see what’s going on.

Viewing 15 replies - 1 through 15 (of 18 total)
  • The topic ‘Delete buttom search, date author and tag’ is closed to new replies.