/* Remove TagDiv theme credit bar */
.td-footer-template-wrap,
.td-sub-footer-container,
.td-footer-bottom-full {
    display: none !important;
}

/* Hide comment icon/count on single post header */
.td-post-comments {
    display: none !important;
}

/* Hide views count */
.td-post-views {
    display: none !important;
}

/* Hide author box at bottom of posts */
.td-author-box {
    display: none !important;
}

Publish.

/* Make header title container flex */
.td-header-wrap .td-logo-text {
    display: flex !important;
    align-items: center;
    gap: 12px;
}



In WordPress go to
Appearance → Customize → Additional CSS

Delete the old bull code

Paste the code above

Click Publish

Hard refresh the site (Ctrl+F5 or open in private mode)

If it still doesn’t appear

Your theme may be using .td-header-logo. Use this fallback version:

/* Bull logo before site title fallback */
.td-header-logo:before {
    content: "";
    display: inline-block;
    width: 48px;
    height

 text;
}

.td-post-source-tags {
display: none;
}

/* Hide comment count everywhere */
.td-module-comments,
.td-post-comments,
.td-module-meta-info .td-module-comments {
    display: none !important;
}

/* Hide author name under thumbnails ONLY on category pages */
.category .td-module-meta-info .td-post-author-name {
    display: none !important;
}

/* MOBILE ONLY */
@media (max-width: 768px) {

 /* hide author/date/comment area */
 .td-module-meta-info,
 .td-post-author-name,
 .td-post-date,
 .td-post-comments {
   display: none !important;
 }

 /* hide excerpts */
 .td-excerpt,
 .td-module-excerpt,
 .tdb-excerpt {
   display: none !important;
 }

 /* hide read more buttons */
 .td-read-more,
 .tdb-read-more,
 .td-module-read-more {
   display: none !important;
 }

}

@media (max-width: 767px) {

  /* make sure titles show */
  .td_module_wrap .item-details,
  .td-module-title,
  .td-module-title a,
  .entry-title,
  .entry-title a,
  .td-module-meta-info {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* DEFAULT: titles under images = BLACK (clean and sharp) */
  .td_module_wrap .item-details .td-module-title a,
  .td_module_wrap .item-details .entry-title a {
    color: #111 !important;
    text-shadow: none !important;
  }

  /* ONLY titles sitting ON TOP of images = WHITE */
  .td_module_wrap.td_module_wrap_has_image .td-module-title a,
  .td_module_wrap.td_module_wrap_has_image .entry-title a,
  .td-big-grid-post .td-module-title a,
  .td-big-grid-post .entry-title a {
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.6) !important;
  }

  /* categories/meta on image */
  .td-big-grid-post .td-post-category,
  .td-big-grid-post .td-module-meta-info {
    color: #fff !important;
  }
}

.single .td-post-author-name,
.single .td-post-author-name a,
.single .tdb-author-name,
.single .tdb-author-name a,
.single .meta-info,
.single .td-post-author-icon,
.single .tdb-author-photo {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}