[Resolved] How to achieve this styling?

Home Forums Support [Resolved] How to achieve this styling?

Home Forums Support How to achieve this styling?

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

    Hey there – not sure if this is something you can help me with, but I want to be able to make a list of articles look like this – https://www.screencast.com/t/a2aNMz6HZ

    I’m having a problem with the ….. not aligning and looking buggy on mobile devices.

    TIA, Robin

    #1151476
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    Try setting up your HTML like this:

    <div class="archive-line">
        <span class="archive-name"><a href="https://robinharford.com/cecily-parsley/">Cecily</a></span>
        <span class="archive-border"></span>
        <span class="archive-date">November 2nd</span>
    </div>

    Then add this CSS:

    .archive-line {
        display: flex;
        font-style: italic;
    }
    
    .archive-border {
        flex-grow: 1;
        height: 1px;
        background: aliceblue;
        align-self: center;
        margin-left: 20px;
        margin-right: 20px;
        border-bottom: 1px dotted #ddd;
    }

    Hope this helps ๐Ÿ™‚

    #1151684
    Robin

    That’s perfect Tom. Many thanks. Is there any way to make the line a series of dots ( …. ) or am I stuck with the horizontal line?

    Either way, thanks again.

    Robin

    #1151742
    Tom
    Lead Developer
    Lead Developer
    #1151806
    Robin

    Thanks, Tom. It still shows a line rather than dots. But no probs. More a preference than an expectation. Cheers.

    #1151905
    David
    Staff
    Customer Support

    Hi there,

    try this CSS:

    .archive-line {
        display: flex;
        font-style: italic;
    }
    
    .archive-border {
        flex-grow: 1;
        height: 1px;
        align-self: center;
        margin-left: 20px;
        margin-right: 20px;
        border-bottom: 1px dotted #222;
    }
    #1152013
    Robin

    Thanks David. That worked ๐Ÿ™‚

    Cheers, Robin

    #1152678
    David
    Staff
    Customer Support

    Glad we could be of help

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.