Css for next/prev slide with Splide - css

I'm trying to style slides that are not in focus/center using Splide. Is there a way to control the CSS for the other slides?
What i'm aiming to do:

Related

Bootstrap 4: own arrow in custom select menu

I'm using the custom select menu (https://v4-alpha.getbootstrap.com/components/forms/#select-menu).
Now I want to change the arrows on the right.
I saw, that the class uses an background image to display the arrow.
But it's an strange url/svg...
Is there any way to change that image with an icon from a font?
Or at least with an other svg?

How to stop transition between slides in powerpoint?

Is there any way to stop transition between slides on click in powerpoint ?
I have a dropdown menu in presentation and I want slides to change just by clicking
menu buttons.
Select all slides, select transitions none (Sorry I have a German Version: Übergänge ohne). When you want to program it look here

swipe slidebox vertically

I would like to create a slide box with Ionic which you can slide and swipe through vertically. I want to know if there is a way to achieve this using CSS.
I have attempted to use the Jssor slider which has a vertical slider.
<ion-slide-box>
<ion-slide><img src="../img/awardvote-img.png"></ion-slide>
<ion-slide><img src="../img/awardvote-img1.png"></ion-slide>
</ion-slide-box>
This is all the code I have so far.

how to add page wide header to xPage with fixed navbar

I have a responsive app. layout with navbar set as fixed-top and pageWidth=fixed
<xe:this.configuration>
<xe:simpleResponsiveConfiguration fixedNavbar="fixed-top"
invertedNavbar="false" pageWidth="fixed"...>
Now I want to add something like a page header but it should be page width. See picture below. So the blue panel should be page width while its content is fixed. What control can I use for that blue panel/header. Should it be another navbar?
Since you are using Bootstrap, I would recommend you create your own custom control that adds a bootstrap row after your navbar. Set the css parameters to fix the position.
The trick here: you can add standard markup into an XPage, so you "just" try what you want to achieve in plain html pages and add the row that worked for you to the custom control.

Customizing Zurb Orbit plugin

Can someone point to in the right direction about what I need to do to customize Zurb Foundation-4 "ORBIT" image slider?
There are things that I want to change. For example:
- I want the arrow graphics to be custom designed.
- I want the bullets graphics to be customized.
- I want the bullets background area to customize.
- I want the Image Description area NOT to have a dark background and also use custom Google Web Fonts for it
etc.
I somehow cant find any documentation on these aspects.
Any help is appreciated.
I want the arrow graphics to be custom designed
There are no images used in the Orbit component. The arrow icons, the previous and next icons, are created in CSS and it's best that you follow the same pattern (of not using images). You can, however, customize it any way you want. Here are the classes you need to look into (and override):
The following are the classes that applies to the background of the "arrow" icons.
.orbit-container .orbit-prev, .orbit-container .orbit-next
Here are the ones for the arrow icons:
.orbit-container .orbit-prev > span
.orbit-container .orbit-next > span
I want the bullets graphics to be customized. - I want the bullets
background area to customize
Again no images are used for the bullets and they are created in css. Here's the class you need to look into and modify:
.orbit-bullets li - for all bullets in the Orbit
.orbit-bullets li.active - for the active bullet in the Orbit
I want the Image Description area NOT to have a dark background
This is the class and property that you need to modify
.orbit-container .orbit-slides-container > * .orbit-caption
Having a good knowledge of CSS you can easily override those classes and apply your own.
Check out the answer to this question here:
orbit slideshow custom next prev buttons links left right arrows
It worked for me!

Resources