gallery image question

This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.

Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.

This is the place to report bugs and get support

When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:

  • What operating system were you running when the bug appeared?
  • What database platform is your site using?
  • What version of mojoPortal are you running?
  • What version of .NET do you use?
  • What steps are necessary to reproduce the issue? Compare expected results vs actual results.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum.
This thread is closed to new posts. You must sign in to post in the forums.
6/2/2015 9:22:00 AM
Gravatar
Total Posts 159

gallery image question

In gallery image,

how to remove text on top of image ''image 1 of ..'' and can view only image title ?

 

 

6/2/2015 9:50:14 AM
Gravatar
Total Posts 1203
Proud member of the mojoPortal team

Help support mojoPortal!
Add-on modules

Re: gallery image question

The ColorBox JavaScript is located in /ClientScript/colorbox/jquery.colorbox.js. There is a section at the top for defaults, including

current: "image {current} of {total}"

You could try modifying that. Be sure to back up the file before making any changes, just in case.

6/2/2015 12:06:50 PM
Gravatar
Total Posts 159

Re: gallery image question

solved but not as suggest..

in :

jquery.colorbox

jquery.colorbox-min

 

set :

(settings.current.replace('{current}', index + 1).replace('{total}', total)).hide();

instead of

(settings.current.replace('{current}', index + 1).replace('{total}', total)).show();

You must sign in to post in the forums. This thread is closed to new posts.