Viewing 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • #170394

    Since 2.3 all Post-Type Icons are centered on frontpage. In grid-layout they even lay over the excerpt.
    Post-Type Icons centered in front of grid

    #170481

    Hey joerg_schaefer!

    Can you post the link to your website?

    Regards,
    Yigit

    #170540

    Mmh, I thought I did: infonet

    #170556

    Hey!

    Can you create a temporary admin login and post here? Make sure to check ” Set as private reply (Only you and moderators will see the content of this post)” above Submit button

    Regards,
    Yigit

    #170602
    This reply has been marked as private.
    #170936

    Hey!

    Please add this on your custom.css or Quick CSS:

    .fallback-post-type-icon {
    position: relative;
    top: 49%;
    left: 50%;
    margin: 0 0 10px -20px;
    height: 60px;
    width: 60px;
    line-height: 59px;
    font-size: 25px;
    text-align: center;
    border-radius: 100px;
    display: block;
    }

    Cheers!
    Ismael

    #171108

    Hi Ismael

    Now the Post Type Icon is not overlaying text anymore. But I think it should be in the left of the text, shouldn’t it?

    Kind regards
    Henning

    P.S.: Do you know if this is a selfmade problem or is it a bug?

    #171420

    Hey!

    Please use this instead:

    .fallback-post-type-icon {
    position: relative;
    margin: 0 0 0 -20px;
    height: 60px;
    width: 60px;
    line-height: 59px;
    font-size: 25px;
    text-align: center;
    border-radius: 100px;
    display: block;
    left: 20px;
    top: 60px;
    }
    
    .avia-content-slider-inner .slide-content {
    padding-left: 80px;
    }
    
    .avia-content-slider-inner .slide-entry.flex_column {
    margin-top: -40px;
    }

    Best regards,
    Ismael

    #171481

    Great work, Ismael!

    On blog.site.easy.de the Multi-Author-Icons of the post list are also centered to the left. On infonet they are centered as well. I don’t see any “align left” oder “align right” in your code, so how could I fix this one?

    Kind regards
    Henning

    #172281

    Hello!

    Please add following code to Quick CSS as well

    #top .fullsize .template-blog .blog-meta { float: left; } 

    Best regards,
    Yigit

    #172354

    Now I’ve got my problem! what I love is the layout when a use the layout with sidebar one the right: with sidebar on the right But I do not want a sidebar on the frontpage! When I disable the sidebar, I get this centered layout centered without sidebar
    Why does the layout switch to a centered one? How could I change this?

    Kind regards,
    Henning

    #173020

    Hello!

    Can you remove sidebar first then post the link? There are two links in the topic i’m not sure which one to focus :)

    Best regards,
    Yigit

    #173121

    Of course I can: This one is without sidebar and here I have same short codes with sidebar. Hope this helps!

    Regards
    Henning

    #173877

    Hey!

    Please add !important to force it :)

    #top .fullsize .template-blog .blog-meta { float: left!important; }

    Cheers!
    Yigit

    #174039

    Thanks for your help, Yigit. Unfortunately the result is not the same at all. If I enable the sidebar, there is a dotted row starting with the post-type-icon. Your solution only puts the icon on the left.

    Again: Why there is a completely different layout if I enable sidebar?

    Kind regards
    Henning

    #175072

    Hi!

    The two layouts are just that: two different layouts. With a sidebar you’ll get equal weight on the left and right and without it the weight moves to the center of the page.

    The easiest way I can see to somewhat keep the layout of having the sidebar would be to remove the sidebar with css and increase the size of the main content area:

    #top.page-id-402 #main .sidebar {
        display: none;
    }
    #top.page-id-402 .template-page.content.nine.alpha.units {
        width: 100%;
        border: 0;
    }

    Cheers!
    Devin

Viewing 16 posts - 1 through 16 (of 16 total)
  • The topic ‘Post-Type Icons centered on Frontpage’ is closed to new replies.