Lightbox Beschriftung
Posted: Fri 8. Jun 2007, 20:51
Hallo zusammen, hat jemand ne Ahnung wie ich die Beschriftung PREV-NEXT-CLOSE der Lightbox von Englisch ins Deutsche bekomme?
Viele Grüsse
Frank
Viele Grüsse
Frank
The phpwcms support forum will help to find answers to your questions. The small but strong community is here since more than 10 years.
https://forum.phpwcms.org/
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
Code: Select all
http:// ikom-bonn.de/index.php?verlauf_der_ausbildung
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;
}
claus wrote:Guck mal in /template/lightbox/images![]()
claus
Oliver wrote:/template/slimbox/css
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%;
}
*/