/* 
* 10/1/22, CJK: Hide the FAQ and PDF insert buttons, which the respective plugins automatically add.
* Only confuses users as these buttons aren't necessary except for admins.  Note that there are two
* selectors for each button, one for the topic and one for the reply; no idea why bbpress has to have 
* two different classes, but they do.
*/
/*
#wp-bbp_reply_content-media-buttons > a.button.js-insert-pdfjs  {
display: none !important;
}

#wp-bbp_topic_content-media-buttons > a.button.js-insert-pdfjs {
display: none !important;
}*/

#wp-bbp_reply_content-media-buttons > a.button.button-primary.csf-shortcode-button {
display: none !important;
}

#wp-bbp_topic_content-media-buttons > a.button.button-primary.csf-shortcode-button
{
display: none !important;
}

/*
 * Member blog specific css (e.g. Hank's Astro, etc.)
 */
 /* Remove the navigation text/links at the bottom of posts that links to previous and  next posts */
#nav-below { display: none; } 

/* Remove author information from member posts (i.e. member astrophotos */
#entry-author-info {display:none!important;} 

/** Hide the 'Category Archive' text on post summary 
* pages (i.e. archive pages).  
* See: https://theme-support.wordpress.com/topic/hide-category-archives-word/
**/
body.category .page-title,
body.tag .page-title {
text-indent: -9999px;
vertical-align: bottom;
}
body.archive .page-title span,
body.tag .page-title span {
display: block;
margin-top: -60px;
text-indent: 0;
vertical-align: bottom;
} 

