Site logo

[Resolved] Underline titles

Home Forums Support [Resolved] Underline titles

Home Forums Support Underline titles

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1551749
    Adrien

    Dear GP Team,

    I would like to underline my h2 title the same way https://www.puravidabracelets.com/ does it.

    I have used David code that I found in the forum but the underline is showing on my site on the left and not align under the title.

    Here is David Code:

    .underline:after {
    content: ”;
    display: block;
    width: 10%;
    height: 4px;
    background-color: red;
    }

    Could you please help me center the underline under my h2 titles. You can see the issue I’m facing on my homepage.

    Thank you very much for your help. Adrien.

    #1551984
    David
    Staff
    Customer Support

    Hi there,

    try this CSS:

    .underline {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .underline::after {
        content: '';
        display: block;
        width: 10%;
        height: 4px;
        background-color: red;
    }
    #1554327
    Adrien

    Thank you very much David for your help. It worked perfectly.

    #1555015
    David
    Staff
    Customer Support

    Glad to hear that

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