Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1099056
    flacnvinyl
    Participant

    Is it possible to force the archive/category within Integrity align to a grid? Is it possible to just have the featured image and the article title?

    #1099057
    flacnvinyl
    Participant
    This reply has been marked as private.
    #1099483
    Rad
    Moderator

    Hi there,

    Thanks for writing in.

    It’s due to this existing CSS,

    .has-post-thumbnail .entry-featured {
        box-shadow: none;
        border: none;
        text-align: center;
        width: 500px;
        margin: 0 auto;
    }

    It shouldn’t force it to 500px, instead, you can change it to 100%.

    Cheers!

    #1099896
    flacnvinyl
    Participant
    This reply has been marked as private.
    #1100154
    Rad
    Moderator

    Hi Drake,

    You can target specific image and use max width and not width. Example,

    .single-post .has-post-thumbnail .entry-featured {
        box-shadow: none;
        border: none;
        text-align: center;
        max-width: 500px;
        margin: 0 auto;
    }

    Hope this helps.

    #1100295
    flacnvinyl
    Participant

    Got it! OK, so I currently have this…

    .has-post-thumbnail .entry-featured {
    box-shadow: none;
    border: none;
    text-align: center;
    width: 500px;
    margin:0 auto;
    }
    .single-post .has-post-thumbnail .entry-featured {
    box-shadow: none;
    border: none;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    }

    Thoughts on unifying those or do they infact address different purposes?

    #1100423
    Rad
    Moderator

    Hi there,

    Ah, you should replace this CSS

    .has-post-thumbnail .entry-featured {
    box-shadow: none;
    border: none;
    text-align: center;
    width: 500px;
    margin:0 auto;
    }

    with this

    .single-post .has-post-thumbnail .entry-featured {
    box-shadow: none;
    border: none;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    }

    Cheers!

    #1101224
    flacnvinyl
    Participant
    This reply has been marked as private.
    #1101269
    Rad
    Moderator

    You’re welcome!

  • <script> jQuery(function($){ $("#no-reply-1099056 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>