Plugin Directory

Changeset 2597642


Ignore:
Timestamp:
09/12/2021 06:15:54 PM (4 years ago)
Author:
jweathe
Message:

Correct the readme documentation again. Nth time is the trick?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • no-bs-image-slider/trunk/readme.txt

    r2597640 r2597642  
    5959
    6060While there are no admin options for this, it can be done by using custom CSS.
    61 Sliders are ID'd with `no-bs-image-slider-<sliderId>` and slides are ID'd with `nbis-slide-<slideId>`.
     61Sliders are ID'd with `no-bs-image-slider-<slug>` and slides are ID'd with `nbis-slide-<slideId>`.
    6262
    6363An approach would be to style the slider as Flexbox, and set the order on the slides.
    64 >   \#no-bs-image-slider-123 {
    65 >       display: flex;
    66 >   }
    67 >   \#no-bs-image-slider-123 #nbis-slide-1 {
    68 >       order: 1;
    69 >   }
    70 >   \#no-bs-image-slider-123 #nbis-slide-2 {
    71 >       order: 0;
    72 >   }
     64>    \#no-bs-image-slider-slug {
     65>        display: flex;
     66>    }
     67>    \#no-bs-image-slider-slug #nbis-slide-1 {
     68>        order: 1;
     69>    }
     70>    \#no-bs-image-slider-slug #nbis-slide-2 {
     71>        order: 0;
     72>    }
    7373
    7474== Changelog ==
Note: See TracChangeset for help on using the changeset viewer.