Tagged: 

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1350206

    I used magazine element to list post titles, as seen in the main page http://www.evtrans.com (near footer).

    How can I put a customized bullet before a post title?
    How can I show the post date after a post title (in a same row)?
    Is there any better way to display the post titles?

    Thank you

    • This topic was modified 2 years ago by evtrans.
    #1350395

    Hey evtrans,

    Thank you for the inquiry.

    You can use this css code to create a bullet point before the magazine title.

    .av-magazine-entry:before {
        float: left;
        display: inline-block;
        content: '';
        -webkit-border-radius: 0.375rem;
        border-radius: 0.375rem;
        height: 0.75rem;
        width: 0.75rem;
        margin-right: 0.5rem;
        background-color: #bdbdbd;
    }
    

    Best regards,
    Ismael

    #1351968

    Thank you @Ismael. I have added the codes and I made it. But I find the bullet points are not horizontally placed in the middle. How can i adjust their horizontal locations?

    And how can I display the post dates after the titles?

    • This reply was modified 1 year, 11 months ago by evtrans.
    #1352145

    Hi,

    Try to adjust the css code a bit and specify the top position. Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.

    .av-magazine-entry:before {
        float: left;
        display: inline-block;
        content: '';
        -webkit-border-radius: 0.375rem;
        border-radius: 0.375rem;
        height: 0.75rem;
        width: 0.75rem;
        margin-right: 0.5rem;
        background-color: #bdbdbd;
        top: 5px;
        position: relative;
    }
    

    Best regards,
    Ismael

    #1353700

    It works, thank you @Ismael

    #1353878

    Hi,

    Great, I’m glad that Ismael could help you out. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #1353897

    No other help needed, thank you. Pls close it.

    #1353919

    Hi,

    Thanks for letting us know, I’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Magazine element customization’ is closed to new replies.