• Resolved anniearcane

    (@anniearcane)


    Hi there,

    First of all, I LOVE this plugin sooooo much! Thank you, thank you, thank you!

    I’m looking to hide of the date and author that shows up at the top of every Book page (below the title). More importantly, I’d like to be able to hide the date on the Series page, because this is set automatically to the day that you create the series. (Out of curiosity, Is there a way to change this date as well? When I edit a Series, there’s no option to do this). But yes, if I could get the CSS to do this, I would really appreciate it. Thank you so very much!

    Gratefully yours,
    Ann

    https://ww.wp.xz.cn/plugins/mooberry-book-manager/

Viewing 11 replies - 1 through 11 (of 11 total)
  • Plugin Author mooberrydreams

    (@mooberrydreams)

    That’s coming from your theme, so you’ll have to look there.

    Thread Starter anniearcane

    (@anniearcane)

    Hi there,
    Thanks so much for the speedy reply! Yes, that’s from my theme. This removes the author and date:

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

    However, it’s site wide. And I still want the date on my posts. What could I use to only get rid of the date and time from mooberry/book pages and grids?
    Thanks again!!
    Ann

    Plugin Author mooberrydreams

    (@mooberrydreams)

    I can’t tell you for sure without seeing your site but you could try

    for book pages:

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

    For book grids I’m not sure. You can filter on the specific page like

    .post-1093 .entry-header .entry-meta {
    display: none;
    }

    where 1093 is the id of the page. I may need to add something in the next update to be able to filter pages with grids.

    Thread Starter anniearcane

    (@anniearcane)

    Oh, shoot, sorry! I totally forgot to include my site:

    http://www.devotionhouse.com
    And the URL for the grid: https://www.devotionhouse.com/mbdb_series/hart-broken/

    The first one removes the author/date from the book pages perfectly! thank you!!!
    I tried to find the “post ID” for the grid page…but it doesn’t have one…or I’m totally blind, which is quite possible LOL

    Thanks again for all your help!!
    Ann

    Plugin Author mooberrydreams

    (@mooberrydreams)

    For this page https://www.devotionhouse.com/mbdb_series/hart-broken/ you can do

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

    And that will work for all of the grid pages that are automatically generated like that. (so, for a series, genre, etc.)

    If you have a page that you’ve added a book grid to, you’ll find the id of the page when you edit the page in your dashboard. Look at the URL in your browser when you edit the page and you’ll see the post id.

    Hope that helps!

    Thread Starter anniearcane

    (@anniearcane)

    Oh, my freakin’ gosh!! I could very well kiss you right now! Yes, that helped!!! 100%!!!!! Thank you so, so, so very much for everything!!

    Hugs,
    Ann

    Thread Starter anniearcane

    (@anniearcane)

    Aiya! I am soooo sorry! I totally forgot to ask!! How do I centre align the grids? I tried this (and some variations):

    .mbdb_tax_grid {
    text-align: center;
    }

    …but no luck.
    Thanks again for all your help!!
    Ann

    Plugin Author mooberrydreams

    (@mooberrydreams)

    This seemed to work:

    .mbm-book-grid-div {
        margin-left: auto;
        margin-right: auto;
    }

    That will do all book grids on the site.

    To filter just Taxonomy Grids you could try

    .mbdb_tax_grid .mbm-book-grid-div {
        margin-left: auto;
        margin-right: auto;
    }

    or a specific page

    .post-6855 .mbm-book-grid-div {
        margin-left: auto;
        margin-right: auto;
    }

    Thread Starter anniearcane

    (@anniearcane)

    And…

    You are my favorite person EVER! Thank you soooooo much!!!
    Ann

    Plugin Author mooberrydreams

    (@mooberrydreams)

    Well at least I’m somebody’s favorite person. 😉

    Thread Starter anniearcane

    (@anniearcane)

    Okay, now I’m just opening this totally resolved topic…
    *grins sheepishly, then proceeds to beg forgiveness*
    But I just had to say that…

    I totally LOLed at this! And heck, with how friendly and willing to help you are, I bet you’re a ton of somebody’s favorite person 🙂

    Super duper appreciative,
    Ann

Viewing 11 replies - 1 through 11 (of 11 total)

The topic ‘CSS to remove date and author?’ is closed to new replies.