Lightbox Beschriftung

Hier bekommst Du deutschsprachigen Support. Keine Fehlermeldungen oder Erweiterungswünsche bitte!
Post Reply
frabon69
Posts: 68
Joined: Wed 25. May 2005, 13:08

Lightbox Beschriftung

Post by frabon69 »

Hallo zusammen, hat jemand ne Ahnung wie ich die Beschriftung PREV-NEXT-CLOSE der Lightbox von Englisch ins Deutsche bekomme?

Viele Grüsse
Frank
User avatar
update
Moderator
Posts: 6455
Joined: Mon 10. Jan 2005, 17:29
Location: germany / outdoor

Post by update »

Guck mal in /template/lightbox/images :!:
claus
User avatar
Oliver Georgi
Site Admin
Posts: 9889
Joined: Fri 3. Oct 2003, 22:22
Contact:

Post by Oliver Georgi »

/template/slimbox/css

Oliver
Oliver Georgi | phpwcms Developer | GitHub | LinkedIn | Систрон
User avatar
flip-flop
Moderator
Posts: 8178
Joined: Sat 21. May 2005, 21:25
Location: HAMM (Germany)
Contact:

Post by flip-flop »

Hier findest du eingedeutschte Grafiken:

Code: Select all

http:// ikom-bonn.de/home/www/template/slimbox/css/de_closelabel.gif
http:// ikom-bonn.de/home/www/template/slimbox/css/de_nextlabel.gif
http:// ikom-bonn.de/home/www/template/slimbox/css/de_prevlabel.gif
Bsp.: unten):

Code: Select all

http:// ikom-bonn.de/index.php?verlauf_der_ausbildung
slimbox.css

Code: Select all

#lbPrevLink:hover {
	background: transparent url(de_prevlabel.gif) no-repeat 0% 15%;
}

#lbNextLink:hover {
   .....
	background: transparent url(de_nextlabel.gif) no-repeat 100% 15%;
}

#lbCloseLink {
	background: transparent url(de_closelabel.gif) no-repeat center;
	margin: 5px 0;
}
Knut
>> HowTo | DOCU | FAQ | TEMPLATES/DOCS << ( SITE )
User avatar
update
Moderator
Posts: 6455
Joined: Mon 10. Jan 2005, 17:29
Location: germany / outdoor

Post by update »

claus wrote:Guck mal in /template/lightbox/images :!:
claus
:oops:
Oliver wrote:/template/slimbox/css
:idea: :!:
User avatar
Marceau
Posts: 201
Joined: Sun 23. Apr 2006, 01:52
Location: Leipzig, Germany
Contact:

Post by Marceau »

Ist es möglich dass die Buttons für next und prev dauerhaft zu sehen sind und nicht erst, wenn man in die entsprechende Bildhälfte mit der Maus kommt!? Wenn ja, wo kann ich das beeinflussen !? Herzlichen Dank...

[EDIT]
Hat sich erledigt... hab einfach nur nicht weiter gedacht, dass man das ja auch in der CSS definieren kann... Danke trotzdem :D
[/EDIT]
There are 10 types of people in the world: Those who understand binary and those who don't
volkman
Posts: 179
Joined: Wed 13. Jul 2005, 12:52
Location: Hamburg, Germany

Post by volkman »

hi marceau,

ich hab das in der css so gemacht:

Code: Select all

#lbPrevLink {
	background: transparent url(prevlabel.gif) no-repeat 0% 15%; /* Zurueck-Button immer eingeblendet */
	left: 0;
}

/* Originaleinstellung Navi-Button nur bei Hover
#lbPrevLink:hover {
	background: transparent url(prevlabel.gif) no-repeat 0% 15%;
}
*/

#lbNextLink {
	background: transparent url(nextlabel.gif) no-repeat 100% 15%; /* Vorwaerts-Button immer eingeblendet */
	right: 0;
}

/* Originaleinstellung Navi-Button nur bei Hover
#lbNextLink:hover {
	background: transparent url(nextlabel.gif) no-repeat 100% 15%;
}
*/
dann sind die vor/zurück-teile immer eingeblendet

viele grüße
volkman
User avatar
Marceau
Posts: 201
Joined: Sun 23. Apr 2006, 01:52
Location: Leipzig, Germany
Contact:

Post by Marceau »

Genau so hatte ich es auch realisiert. Trotzdem danke für die Antwort...
There are 10 types of people in the world: Those who understand binary and those who don't
Post Reply