tshelley
Member
Posted 7 months ago #
Hi,
I'm using a child theme of Pinboard and I'm trying to hide the admin bar under each new post summary.
You can see what I'm talking about here: http://mopartnersconsultants.com/news/
If there's a way to get rid of the "admin" "date" "category" "edit" and "permalink" links that would be GREAT!
Thanks in advance.
tshelley
Member
Posted 7 months ago #
Hi,
This is also happening in the gallery section when you click on a photo. (http://mopartnersconsultants.com/video/photo-39-version-2/) Is it in the style.css or in another part of the original coding.
I know there's someone out there that can help. Don't leave me hanging : )
hieu.nguyen
Member
Posted 7 months ago #
This is an aside tag <aside class="entry-meta">
2 solutions:
(1) You can edit the css file. At the bottom of the css file, add this line: aside.entry-meta { display:none!important;}
(2) You can remove or comment-out the whole aside tag from the template php file.
tshelley
Member
Posted 7 months ago #
Awesome! Thanks so much. That worked! I just added
aside.entry-meta {
display:none;
}
to the child theme style.css and it worked like a charm.
I knew it was a display:none deal, but can you explain "aside.entry-meta" and what that means or encompasses. I've been teaching myself this for a few years and I learn so much more when it's explained a little.
Thanks so much again!