BXslider

All WYSIWYG Web Builder support issues that are not covered in the forums below.
Forum rules
IMPORTANT NOTE!!

DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.



PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901

MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
Post Reply
pizzazz
 
 
Posts: 6
Joined: Thu Jul 24, 2025 9:27 pm

BXslider

Post 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
User avatar
Pablo
 
Posts: 23681
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: BXslider

Post 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.
User avatar
BaconFries
 
 
Posts: 6006
Joined: Thu Aug 16, 2007 7:32 pm

Re: BXslider

Post 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>
pizzazz
 
 
Posts: 6
Joined: Thu Jul 24, 2025 9:27 pm

Re: BXslider

Post by pizzazz »

Hi Baconfries

Im not sure, but do i modify the actual HTML for the page?
User avatar
BaconFries
 
 
Posts: 6006
Joined: Thu Aug 16, 2007 7:32 pm

Re: BXslider

Post by BaconFries »

You can simply insert using Page HTML Between the <head></head> tags*
Post Reply