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

    We would like to display the post category under the post title in the masory, how can we do that?

    #676165

    Hey kilimats,

    Thank you for using Enfold.

    Please try the code provided in the previous thread. https://kriesi.at/support/topic/display-the-post-category-above-the-title-in-masonry-view/#post-660217

    Best regards,
    Ismael

    #676178

    thats awesome, this made me realize i need to display all three on the same line otherwise the picture is covered by half, how can i display them all in one line like so: [posted date] – [Category] – [post title] ?

    and i would like to hide the post description too if possible, only visible when entering the post page

    • This reply was modified 8 years, 2 months ago by yingyang.
    #677937

    Hi,

    Add this in the Quick CSS field:

    .av-inner-masonry-content-pos-content > * {
        display: inline-block !important;
        margin-right: 5px;
    }

    Best regards,
    Ismael

    #677987

    Thanks almost perfect, How do i show the date first, correct the spacing after post title and remove the By AUTHOR text.

    Also is it possible to add text between each section? i’d like it to show as:

    DATE | POST TITLE Closed P&L on POST CATEGORY

    • This reply was modified 8 years, 2 months ago by yingyang.
    #679269

    Hi!

    Add this code below the previous one to remove the author info:

    .av-masonry-text-sep.text-sep-author, .av-masonry-author {
        display: none !important;
    }

    Use the following to fix the space between the title and the date:

    .av-masonry-entry .av-masonry-entry-title {
        margin-right: 10px;
    }

    Unfortunately, you can’t move the date before the title without modifying the parent theme files.

    Regards,
    Ismael

    #679270

    almost thanks,

    – the author still shows after adding the code
    – how can i make the date font bigger and show first

    #681506

    Hi,

    1.) Did you place it below the previous code?

    .av-inner-masonry-content-pos-content > * {
        display: inline-block !important;
        margin-right: 5px;
    }
    
    .av-masonry-text-sep.text-sep-author, .av-masonry-author {
        display: none !important;
    }

    2.) Unfortunately, you can’t move the date before the title without modifying the parent theme files. If you want to make it bigger, use this:

    .av-masonry-date, .av-masonry-text-sep {
        font-size: 20px;
    }

    Best regards,
    Ismael

    #681553

    thanks, the date font size is a good workaround, i did add the code you gave me but the author still shows, any idea?

    #682661

    Hi,

    Please try adding following code to Quick CSS

    span.av-masonry-author {
        display: none!important;
    }

    If that too does not help, please create temporary admin logins and post them here privately.

    Best regards,
    Yigit

    #682667

    worked u rock !!

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Masory: display category under post title’ is closed to new replies.