[Support request] Tag, category and comments in a single line

Home Forums Support [Support request] Tag, category and comments in a single line

Home Forums Support Tag, category and comments in a single line

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #1112140
    Toni

    Hi! attached the desired footer entry meta. Thanks.

    View post on imgur.com

    #1112172
    David
    Staff
    Customer Support

    Hi there,

    try this CSS:

    body:not(.single) footer.entry-meta {
        display: flex;
    }
    
    body:not(.single) footer.entry-meta span:not(:last-child) {
        margin-right: 10px;
    }
    
    body:not(.single) footer.entry-meta span:last-child {
        margin-left: auto;
    }
    
    @media (max-width: 600px) {
        body:not(.single) footer.entry-meta {
            flex-wrap: wrap;
        }
    
        body:not(.single) footer.entry-meta span:first-child {
            margin-right: auto;
        }
    
        body:not(.single) footer.entry-meta span:nth-child(3) {
            margin-right: 0;
        }
    }
    #1112175
    Toni

    Hey! works!
    You are the fuc*ing master!
    Thanks a lot!

    #1112187
    Toni

    well, in mobile version, (i have iphone6s) it does not look very good

    View post on imgur.com


    any suggestions?
    Thanks

    #1112201
    David
    Staff
    Customer Support

    Edit the CSS here

    #1112375
    Toni

    Thanks a lot, works fine, but missing a small space of separation and
    i don’t know how to fix it. I’m not very good at CSS 🙁

    View post on imgur.com

    Sorry again.

    #1112383
    David
    Staff
    Customer Support

    Updated here 🙂

    #1113107
    Toni

    Hi! in the index is perfect, all is in one line, but if you enter in any post, again break the single line 🙁

    #1113372
    David
    Staff
    Customer Support

    The CSS I provided only applies to the Archive pages.
    If you want it to apply to the Single Post as well then you will need to remove all instances of this:

    body:not(.single)

    #1113377
    Toni

    Thanks David. Works fine!
    Feliz Navidad desde España!
    Merry Christmas from Spain!

    #1113379
    David
    Staff
    Customer Support

    You’re welcome – Merry Christmas 🙂

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