Page 1 of 1

BXslider

Posted: Fri Aug 01, 2025 7:14 pm
by pizzazz
Hi gang

Three questions

1) Is there a way to center the title of an image under the displayed image?

2) This is more detailed. For the collection of a bxslider, you can add the title of each
image. Since I use initial CAPS for my file names, AND the name of the file is the
same as the title, is there a way to create a bat file (dos) that can take the name of
the file, and insert it into the title attribute of the collection? Is there a way to
programmatically do this?

3) Is there another photo display extension that has features that I am looking for?

Thanks


Mike

Re: BXslider

Posted: Fri Aug 01, 2025 7:46 pm
by Pablo
First please note that this extension is based on a third party script, I have no control over how it works, so it is provided "AS IS".

This extension has no option to center the text

There are no extensions that can import names from an file. This functionality has never been requested before.

Re: BXslider

Posted: Fri Aug 01, 2025 10:03 pm
by BaconFries
You should be able to centre the text by using one of the following ***Note untested***

Code: Select all

<style>
/* This targets the caption container generated by BXslider */
.bx-wrapper .bx-caption {
  text-align: center;
}
</style>
Or

Code: Select all

<style>
.bx-wrapper .bx-caption {
  text-align: center !important;
}
</style>

Re: BXslider

Posted: Sat Aug 02, 2025 1:36 pm
by pizzazz
Hi Baconfries

Im not sure, but do i modify the actual HTML for the page?

Re: BXslider

Posted: Sat Aug 02, 2025 1:59 pm
by BaconFries
You can simply insert using Page HTML Between the <head></head> tags*