Site logo

Archived topic

Meta icons suddenly hidden?

3 replies · Started by Morgan on July 27, 2019

Viewing posts 1–4 of 4

My meta icons were moved from bottom of post to below Post title (thanks David), been working fine since I started tweaking over a month ago.

They're now suddenly hidden and I have no idea why.

Help?

/* _meta */
.cat-links, .tags-links {
    font-size: 0 !important }
.cat-links:before, .tags-links:before {
    display: inline !important;
    font-size: 15px }
.cat-links a, .tags-links a, .author-name {
    font-size: 16px;
    margin-right: 0.75em }
.cat-links a:not(:first-of-type):before, .tags-links a:not(:first-of-type):before {
    content: ',';
    margin-right: 0.75em  }
footer.entry-meta {display:none }

Hi there,

Try adding this CSS:

.entry-header .gp-icon {
    display: inline-block;
    font-size: 17px;
}

.cat-links:before, .tags-links:before {
    display: none !important;
}

Thanks Tom, nailed it again.

For passer bys, I deleted:

.cat-links:before, .tags-links:before {
    display: inline !important;
    font-size: 15px }

Below is final css - now working to hide meta below post, and have + icons under post title:

/* _meta */
.entry-header .gp-icon {
    display: inline-block;
    font-size: 17px }
.cat-links:before, .tags-links:before {
    display: none !important }
.cat-links, .tags-links {
    font-size: 0 !important }
.cat-links a, .tags-links a, .author-name {
    font-size: 16px;
    margin-right: 0.75em }
.cat-links a:not(:first-of-type):before, .tags-links a:not(:first-of-type):before {
    content: ',';
    margin-right: 0.75em  }

Awesome, glad it's working now :)

This archived topic is closed to new replies.