[Resolved] Meta icons suddenly hidden?

Home Forums Support [Resolved] Meta icons suddenly hidden?

Home Forums Support Meta icons suddenly hidden?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #968808
    Morgan

    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 }
    #968940
    Tom
    Lead Developer
    Lead Developer

    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;
    }
    #969585
    Morgan

    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  }
    #969659
    Tom
    Lead Developer
    Lead Developer

    Awesome, glad it’s working now 🙂

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.