Site logo

[Resolved] Image navigation align

Home Forums Support [Resolved] Image navigation align

Home Forums Support Image navigation align

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2558173
    Jusung

    Hello!

    When you see this page, you can see the product image.
    under the image, I have made dot as a post navigation.

    I want to align it to center and I want to include it inside image

    .flex-control-nav {
        position: absolute;
        bottom: -45px;
        list-style: none;
        display: block;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    When I change the bottom in CSS, the navigation can get inside the image, but I can’t make it centered.
    Could you help with this?

    #2558182
    Fernando
    Customer Support

    Hi Jusung,

    Try this CSS instead:

    .flex-control-nav {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform:translateX(-50%);
        list-style: none;
        display: block;
        padding: 0;
        margin: 0;
        width: fit-content;
    }
    #2558190
    Jusung

    Thank you!!

    It is working perfectly!

    #2558227
    Fernando
    Customer Support

    You’re welcome, Jusung!

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