• Resolved lucystrike

    (@lucystrike)


    Hello,

    can somebody please help me – CSS is not my friend anymore!!!

    I created a child theme.

    I like where the category and tags are shown in the twenty sixteen wordpress theme.

    – BUT I want the Author (and the Avatar) and the Date remove on all pages!!!

    – and on the index Page also the Categories and Tags

    – And ONLY on the article page I want the Categories and Tags

    – AND before the categorys should stand KATEGORIE and before the tags SCHLAGWORTE

    Thank you in advance for whatever help you may provide.

Viewing 10 replies - 1 through 10 (of 10 total)
  • Hello there @lucystrike !

    Can you share your site link so we can take a look?

    – AND before the categorys should stand KATEGORIE and before the tags SCHLAGWORTE

    Can you elaborate more what you mean by this?

    Thread Starter lucystrike

    (@lucystrike)

    Hello,
    The site is still under construction ?and not yet online – so no link – SORRY
    But:?

    https://ibb.co/ZKBgJcH

    On the index. Page the whole block with 

    Autor?Philipp

    Kategorien?Musik

    Schlagw?rter?Schlagworte:?amet?dolor?ipsum?Lorem?sit?Lorem ipsum dolor sit amet“

    bearbeiten

    should be?removed/invisible.


    And on the article/full page should also the posted by: Philipp part be removed/invisible.


    Before the category Musik should stand KATEGORIE like in the tags below.

    Hi @lucystrike

    You can deactivate those options from the settings in Appearance > Customize > Content Options > Post Details and remove the check marks on Display date, categories, author and tags. After that, click Save to reflect the changes on the site.

    Thread Starter lucystrike

    (@lucystrike)

    Hi,

    I don’t have this settings.

    https://ibb.co/xz7HMVc

    Thread Starter lucystrike

    (@lucystrike)

    I just switched to the original Twenty Sixteen theme and I don’t have the option there either.

    Did I do something wrong?

    Moderator mizantium

    (@janmtm)

    Hi @lucystrike !

    Thank you for sharing more details.

    To target this with CSS, you can remove the entire area that hosts all the post’s meta data, which is all nested inside a div with the class, entry-footer, so by not displaying this div, none of the metadata would show. (Metadata – author avatar and name, date of post, category if available)

    .entry-footer {
    display: none;
    }

    Once you do that, the space that the main post content occupies may still need to be adjusted, so you can make that occupy all the space, by using the following:

    .entry-content {
    width: 100%;
    }

    Hope this helps!

    Thread Starter lucystrike

    (@lucystrike)

    THANKS!

    But that removes the entire block on the overview page and the blog post.

    I didn’t want that. ?? Unfortunately it is not that simple!

    Thread Starter lucystrike

    (@lucystrike)

    On the overview page – I have now simply out-commented the corresponding block in the .php file.

    I’m still working on the other things…

    Thread Starter lucystrike

    (@lucystrike)

    all problems solved – the case can be closed! THANKS

    Moderator mizantium

    (@janmtm)

    Okay @lucystrike !

    Thank you for the update. It’s set as resolved. ??

Viewing 10 replies - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.