That’s coming from your theme, so you’ll have to look there.
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
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.
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
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!
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
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
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;
}
And…
You are my favorite person EVER! Thank you soooooo much!!!
Ann
Well at least I’m somebody’s favorite person. 😉
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