Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Want to show the dot dot in Carousel in the right side.

  • This topic is empty.
Viewing 1 post (of 1 total)
  • Author
    Posts
  • #280535
    [email protected]
    Participant

    Dear All,

    I have written the below less style sheet file.

    /* MCK Carousel – Carousel.less*/

    @cmp-carousel-indicator-size: 10px;
    @cmp-carousel-action-icon-size: 24px;

    .cmp-carousel–hero {
    padding:0;

    .cmp-carousel__action {
        width: 20%;
        cursor: pointer;
    
        @media (max-width: @screen-medium) {
            width: 10%;
        }
        @media (max-width: @screen-small) {
            width: @gutter-padding * 2;
        }
    }
    
    .cmp-carousel__action--previous {
        left: 0;
        .cmp-carousel__action-icon {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23666' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
    
        }
    }
    
    .cmp-carousel__action--next {
        right: 0;
    
        .cmp-carousel__action-icon {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23666' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
        }
    }
    

    .carousel-indicators-numbers {
    li {
    text-indent: 0;
    margin: 0 2px;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 100%;
    line-height: 30px;
    color: #fff;
    background-color: #999;
    transition: all 0.25s ease;
    &.active, &:hover {
    margin: 0 2px;
    width: 30px;
    height: 30px;
    background-color: #337ab7;
    }
    }
    }

    .cmp-carousel__indicators {
        .container-content();
        padding: 0;
        bottom: 30px;
        padding-left: @gutter-padding * 2;
        display: flex;
        justify-content: left;
        list-style: none;
        background-color: transparent;
        height:50px;
    
        @media (max-width: @screen-medium) {
            justify-content: center;
        }
    }
    
    .cmp-carousel__indicator {
        position: relative;
        cursor: pointer;
        flex: 0 1 auto;
        width: @cmp-carousel-indicator-size;
        height: @cmp-carousel-indicator-size;
        margin: 6px 8px;
        border-radius: 50%;
    
        font-size: 0;
        text-indent: -3000px;
    
        background-color: rgba(116, 116, 116, 0.5);
    
        &--active {
            background-color: rgba(0, 0, 0, 0.9);
        }
    }
    

    }

    But after this the carousel dot dot is coming down of the image , as shown below.

    (Note , not able to attache image)

    I want the dot dot should come left center side of the image.

Viewing 1 post (of 1 total)
  • The forum ‘CSS’ is closed to new topics and replies.