Welcome, Guest. Please login or register.
March 19, 2010, 03:41:15 AM

Login with username, password and session length
Search:     Advanced search
Interested in joining the WebsiteBaker team?
For more Information read here or on our new website.
110410 Posts in 15941 Topics by 9294 Members
Latest Member: papirex
* Home Help Search Login Register
+  WebsiteBaker Community Forum
|-+  English
| |-+  Modules (Moderators: Argos, BerndJM)
| | |-+  New Module: Lightbox
Pages: 1 ... 3 4 [5] Go Down Print
Author Topic: New Module: Lightbox  (Read 29728 times)
neophyre

Offline Offline

Posts: 13


« Reply #100 on: November 20, 2009, 02:59:42 AM »

problem solved.

Next thing is, how do I have a black box surrounding my thumbnails?
Logged
Ruud
Development Team
******
Offline Offline

Posts: 1272


[[droplets]]


WWW
« Reply #101 on: November 20, 2009, 10:09:04 AM »

problem solved.

Next thing is, how do I have a black box surrounding my thumbnails?
Can you tell us what the problem and the solution was?
Other members in the community might benefit from that.

Borders around images are done using CSS.
Use a tool like firebug (Firefox plugin) to find the class/id the images are using and set a css rule for that.
The bookmarks pages will show you some links to good help with CSS
Logged

laola

Offline Offline

Posts: 31


« Reply #102 on: December 01, 2009, 08:10:49 PM »

Wer kann helfen?

ich hätte gern, dass die Bildershow nicht automatisch startet. also genau andersherum als es jetzt ist.
Hat einer von euch eine Idee oder einen Tipp? wie ich das hinbekomme?

Danke

laola
Logged
erpe

Offline Offline

Posts: 1737



WWW
« Reply #103 on: December 01, 2009, 08:15:03 PM »

This is the english part of the forum  wink

rgds

erpe
Logged

neophyre

Offline Offline

Posts: 13


« Reply #104 on: December 08, 2009, 09:16:30 AM »

problem solved.

Next thing is, how do I have a black box surrounding my thumbnails?
Can you tell us what the problem and the solution was?
Other members in the community might benefit from that.

Borders around images are done using CSS.
Use a tool like firebug (Firefox plugin) to find the class/id the images are using and set a css rule for that.
The bookmarks pages will show you some links to good help with CSS

The problem was I was unable to upload the lightbox module. curiously enough, it all began working once I'd fixed up my templates.
I'll have a go at looking thought the css for the borders around the thumbnails..
Logged
neophyre

Offline Offline

Posts: 13


« Reply #105 on: December 09, 2009, 04:11:02 AM »

Having issues finding the code for the black boxes behind the thumbnails... anyone reckon they could offer me a hand?

Tried with firebug, but got myself a bit lost!
Logged
Ruud
Development Team
******
Offline Offline

Posts: 1272


[[droplets]]


WWW
« Reply #106 on: December 11, 2009, 03:39:46 PM »

Having issues finding the code for the black boxes behind the thumbnails... anyone reckon they could offer me a hand?

Can we have a look?
Logged

mikejd

Offline Offline

Posts: 100


« Reply #107 on: December 11, 2009, 04:42:42 PM »

I have installed this module and have it working except for the language. On the pop-up display all the labels are in German. It looks like these can be changed in lightbox.js where lines 96 to 104 are as follows :

Code:
           strings : { // allows for localization
                closeLink : 'Exit',
                loadingMsg : 'lade Bilder',
                nextLink : 'weiter »',
                prevLink : '« zurück',
                startSlideshow : 'Start Bildershow',
                stopSlideshow : 'Stop Bildershow',
                numDisplayPrefix : 'Bild',
                numDisplaySeparator : 'von'

However, I don't speak German. So, although I could make a guess, can anyone provide a translation and confirm that this is the correct place to modify.

Thanks.
Mike
Logged
doc

Offline Offline

Posts: 3579


« Reply #108 on: December 11, 2009, 05:31:20 PM »

Hi,

simply translate the variables and you are done smiley
Don´t know if this is the right place for translation, but the stuff could be translated as follows:

Code:
strings : { // allows for localization
                closeLink : 'Exit (or close)',
                loadingMsg : 'load(ing) images',
                nextLink : 'next »',
                prevLink : '« previous',
                startSlideshow : 'start slide show',
                stopSlideshow : 'stop slide show',
                numDisplayPrefix : 'image',
                numDisplaySeparator : 'from'

Doc
Logged
mikejd

Offline Offline

Posts: 100


« Reply #109 on: December 11, 2009, 05:49:24 PM »

Thanks for the translation, doc.

Is it possible to open the lightbox with the slideshow stopped?

Mike
Logged
neophyre

Offline Offline

Posts: 13


« Reply #110 on: December 12, 2009, 03:11:09 AM »

Having issues finding the code for the black boxes behind the thumbnails... anyone reckon they could offer me a hand?

Can we have a look?

http://www.expozay.net/tanika/tanika.php?expozay=0&cat=37
http://karinautique.com/Lingerie.html

The links above are the sort of effect i'm after, more so like the black borders around the thumbnails on tanika's website.
Logged
neophyre

Offline Offline

Posts: 13


« Reply #111 on: December 15, 2009, 10:32:38 AM »

anyone?
Logged
neophyre

Offline Offline

Posts: 13


« Reply #112 on: December 16, 2009, 05:28:32 AM »

Solved:

.lb_image{
background: #333333;
padding-top: 20px;
padding-right: 10px;
padding-bottom: 20px;
padding-left: 10px;
margin: auto;
display:block;
}
Logged
mikejd

Offline Offline

Posts: 100


« Reply #113 on: December 16, 2009, 10:25:12 AM »

Solved:

.lb_image{
background: #333333;
padding-top: 20px;
padding-right: 10px;
padding-bottom: 20px;
padding-left: 10px;
margin: auto;
display:block;
}

More elegant would be:

.lb_image{
background: #333333;
padding: 20px 10px;
margin: auto;
display:block;
}

Mike
Logged
neophyre

Offline Offline

Posts: 13


« Reply #114 on: December 17, 2009, 08:57:49 AM »

One issue tho - This does not appear in IE at all!
Logged
mikejd

Offline Offline

Posts: 100


« Reply #115 on: December 17, 2009, 10:31:44 AM »

Do you have a link to the site? As this appears to be a css issue, not a WB problem, it's not really relevant to this forum but without a link to view the page it's difficult to resolve.

Mike
Logged
neophyre

Offline Offline

Posts: 13


« Reply #116 on: December 18, 2009, 06:15:09 AM »

www.tammyann.com.au/pages/gallery.php
Logged
Pages: 1 ... 3 4 [5] Go Up Print 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.11 | SMF © 2006-2009, Simple Machines LLC Valid XHTML 1.0! Valid CSS!