Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #612694

    virtual115
    Participant

    Dear all,

    I love the x-theme. It seems so incredible flexible and nice to use.

    What I am trying to do is to place a post grid with equal heights. How to do that?

    Thank you in advance

    #612698

    virtual115
    Participant
    This reply has been marked as private.
    #612722

    Christopher
    Moderator

    Hi there,

    Upon checking the URL, no content was added to this page, please add your content so we can see the issue.

    Thanks.

    #612859

    virtual115
    Participant
    This reply has been marked as private.
    #612873

    Thai
    Moderator

    Hi There,

    Try adding following CSS under Customizer > Custom > CSS:

    .vc_gitem-zone-mini .vc_gitem_row .vc_gitem-post-data-source-post_excerpt {
        min-height: 161px;
    }

    Hope it helps.

    #612888

    virtual115
    Participant

    Yes, this did the job. Thank you so much.
    Is it possible to down align the red buttons?

    Best Regards

    #612928

    Paul R
    Moderator

    Hi,

    Sorry, I am not really sure what you mean by down align.

    Can you provide a little more clarification of what you are trying to achieve.

    Upon checking, I can see it is already aligned at the bottom

    http://screencast.com/t/Ua7XE7apsaJa

    Thanks

    #613034

    virtual115
    Participant

    Sure, additionally I want to put the “Read more” buttons into one row.

    Thank you!

    #613093

    Paul R
    Moderator

    Hi,

    Can you provide us a screenshot and point to us where you want your buttons to appear.

    Thanks

    #613862

    virtual115
    Participant
    This reply has been marked as private.
    #614189

    Lely
    Moderator

    Hello There,

    Thank you for the screenshot. Please note that the position of the Read More button will depend on the height/length of the excerpt. We can replace above CSS but please take note that your excerpt should be longer than that.
    Replace this:

    .vc_gitem-zone-mini .vc_gitem_row .vc_gitem-post-data-source-post_excerpt {
        min-height: 161px;
    }

    With this:

    .vc_gitem-zone-mini .vc_gitem_row .vc_gitem-post-data-source-post_excerpt {
        height: 180px;
    }

    Setting a uniform height will align the red button.
    Hope this helps.

    #614421

    virtual115
    Participant

    Dear Support Team,

    Got it.
    Is there a documentation of the classes and objects within the x-theme. Did I missed it in the download section?

    Thank you very much for your fast support here!

    #614439

    Christopher
    Moderator

    Hi there,

    Please check this KB article :

    https://community.theme.co/kb/css-class-index/

    Thanks.

    #614563

    virtual115
    Participant

    Hmm, one other question. Sorry for asking that much …..

    Why these buttons stay orange red although I changed the button appearance in the Theme Customization panel?
    I don’t have any additional CSS for them active….

    Thank you again.

    #614621

    Christopher
    Moderator

    Hi there,

    They inherit Visual composer style since they were added via VC grid element, to change their style please add the following code in Customize -> Custom -> CSS :

    .vc_btn3.vc_btn3-color-juicy-pink, .vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-flat {
        color: #ffffff;
        background-color: #f4524d;
    }
    .vc_btn3.vc_btn3-color-juicy-pink:hover, .vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-flat:hover, .vc_btn3.vc_btn3-color-juicy-pink:focus, .vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-flat:focus {
        color: #f7f7f7;
        background-color: #f23630;
    }
    

    Hope it helps.