Tile and Description Colors On Pro Gallery

I am using Pro Gallery on Wix Studio, since some images are light color and others are in dark colors, can’t use one color only for the title and description. as some times not visible because of the images ground colors.
If there and code to change the title and description colors dynamically based on CMS field value for example, then I add colors hex numbers on this field value

also I am trying to use custom buttons for (Next and Previous), using the below codes, but it doesn’t work. any solutions?

$w.onReady(function () {
    $w('#knowPrev').onClick(() => {
        $w('#knowGallery').previous();
    });

    $w('#knowNext').onClick(() => {
        $w('#knowGallery').next();
    });
});

You are using ProGallary?

  1. Displaying a Pro Gallery on Your Site Using the Pro Gallery Backend API

  2. https://www.wix.com/velo/reference/wix-pro-gallery-backend/progallery/introduction

It is very important to know which GALLARY you are using, because every gallary is someekind different.

Some facts about GALLARIES…

Working with Gallaries…

You will surely find even more information…

Good luck!

I am using Wix Studio, I got the below result for my current Pro Gallery element which I added it through the editor

{
“isPlayable”: false,
“hasCurrentItem”: false,
“hasNavigationButtons”: false,
“supportsAllMediaTypes”: true
}

how I change the pro gallery type ?

Well, i think on Wix-Studio it is a bit different.

You do not have real options to do what you want.

  1. The Wix-Pro-Gallary is like an inclosed own APP.
  2. To get access to the data, you will need to use the backend-api of wix-pro-gallary.
  3. CSS-styles are not possible to be set on a Pro-Gallary, like it seems…
    All supported CSS-elements…

So your options are very low.

What you can try is to get the data you need out of the gallary and design custom additional elements exposing/showing the data you want.

For example → TITLE <—
You do not like the TITLE generated by the APP ?
You want to have a custom designed one?

That means → deactivating the title inside the Pro-Gallray ?


You will at least find an option for this.

Now, since you deactivated title you want to replace it with your own custom one?
What are your next steps?

  1. You need to get the title-data for each/current-item? → wix-pro-gallary-backend-API?
  2. You got the title-data? → pushing it to the text-element of your choise ?

These are just some brainstorming thoughs, you will have to try this out.