Home Forums WordPress Themes – Premium Preference On Preference – remove date and author on posts

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #14102
    Prisca
    Participant

    Hello

    I would like to remove author – date etc…on posts. No option found in the customize theme.

    I added display:none; to the style.css:

    .aside-entry-meta {
    font:italic 11px verdana, arial, helvetica, sans-serif;
    display:none;
    }
    .status-date {
    font-size:12px;
    display:none;
    }
    but no luck.

    A little advice would be very welcome.

    Thank you 🙂

    #18257
    Sushil Adhikari
    Moderator

    First, anything relating to a specific theme, it’s best to keep it to the theme’s forum category for it; I moved this topic to the PReference category.

    As for your request, you would do this:

    .article-info {display: none;}
    #18258
    Prisca
    Participant

    Thank you for your reply – don’t seem to work though. I cleaned cache but the line: date author etc..under the post title (not page) is still there.

    Thanks again 🙂

    #18259
    Sushil Adhikari
    Moderator

    if you can, please provide a link here and I will check it out. It should work though as I tested it on my local test site, but a link to the page yours is on, I will try it there.

    #18260
    Prisca
    Participant

    Hello

    Here is the link. The maintenance is off for a little while 🙂

    http://beautifulmemakeup.com/category/beauty-blog/

    #18261
    Sushil Adhikari
    Moderator

    That helped… look for this line around 1016

    /* Article styles */
    .actions,
    .actions li,
    .article-info,
    .article-info dd {
    	display:inline;
    }

    After that, add your override because cascading stylesheets work in a cascading way. Anything that is added or modified, should follow after the original styling so it overrides the previous style.

    Note: I would also recommend you look into using a child theme when making modifications to any theme files, so that if there’s any updates, you won’t lose your changes.

    #14103
    Prisca
    Participant

    YEAH!!! Thank you so much! It worked.

    I soooo appreciate your fantastic support.

    Thanks again and have a great day 🙂

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