hallo jan
ich habe da ein Problem mit dem Text in der Downloadinfobox.
http://www.superabc.de/downloadmsg.png
wo kann ich das einstellen?
scheinbar wird die CSS vom Template dafĂźr verwendet.
Download Div Text
-
- Phoca Newbie
- Posts: 4
- Joined: 16 Mar 2008, 06:20
- Location: Germany
- Contact:
-
- Phoca Newbie
- Posts: 4
- Joined: 16 Mar 2008, 06:20
- Location: Germany
- Contact:
Ja, da hast du das i
Ja, da hast du das im CSS vorgesehen.
Das mit dem Rahmen klappt auch, nur der Text nicht.
Da wird nach wie vor die Einstellung vom Joomlatheme genommen.
In dem Bild siehst du die Abfrage mit dem Web Developer von Firefox.
http://www.superabc.de/Screen_Snaper_Image.png
Wo finde ich die Overlaybox im Quelltext?
Das mit dem Rahmen klappt auch, nur der Text nicht.
Da wird nach wie vor die Einstellung vom Joomlatheme genommen.
In dem Bild siehst du die Abfrage mit dem Web Developer von Firefox.
http://www.superabc.de/Screen_Snaper_Image.png
Wo finde ich die Overlaybox im Quelltext?
- Jan
- Phoca Hero
- Posts: 48403
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Hallo, hast du die l
Hallo, hast du die letzte Version von Phoca Gallery. So arbeitet die letzte version:
Ich habe die rote Farbe fĂźr den Text eingegeben:
/*download message text*/
#download-msg div table {
color:red;
padding: 10px;
font-weight: bold;
filter:alpha(opacity=100);
opacity: 0.8;
-moz-opacity:0.8;
position: relative;
z-index:1000;
background-color:#ebecff;
}
Ich habe die rote Farbe fĂźr den Text eingegeben:
/*download message text*/
#download-msg div table {
color:red;
padding: 10px;
font-weight: bold;
filter:alpha(opacity=100);
opacity: 0.8;
-moz-opacity:0.8;
position: relative;
z-index:1000;
background-color:#ebecff;
}
If you find Phoca extensions useful, please support the project
-
- Phoca Newbie
- Posts: 4
- Joined: 16 Mar 2008, 06:20
- Location: Germany
- Contact:
ja, ich habe heute d
ja, ich habe heute die neue Version installiert.
Die Stelle im Quelltext habe ich auch gefunden:
.'<tr><td colspan="2"><small>' . JText::_('Download Image') . '</small></td></tr
>'
Da du da <small> angegeben hast, wird eben die small-Einstellung vom Joomlatemplate Ăźbernommen, da es in der Poca-CSS nicht definiert ist.
Genau so ist es mit der Dateiinfo, bei mir ist <td> im Joomlatemplate definiert.
Es wäre eventuell besser wenn du da eigene Definitionen angibst und in die CSS einbaust.
Ich kann mir das nun selbst ändern aber beim nächsten Update ist es ja wieder weg.
Die Stelle im Quelltext habe ich auch gefunden:
.'<tr><td colspan="2"><small>' . JText::_('Download Image') . '</small></td></tr
>'
Da du da <small> angegeben hast, wird eben die small-Einstellung vom Joomlatemplate Ăźbernommen, da es in der Poca-CSS nicht definiert ist.
Genau so ist es mit der Dateiinfo, bei mir ist <td> im Joomlatemplate definiert.
Es wäre eventuell besser wenn du da eigene Definitionen angibst und in die CSS einbaust.
Ich kann mir das nun selbst ändern aber beim nächsten Update ist es ja wieder weg.
- Jan
- Phoca Hero
- Posts: 48403
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Probier mal, ob es d
Probier mal, ob es dir Nachfolgendes hilft. Wenn Ja, ich implementiere es in die nächste Version:
/*download message text*/
#download-msg div table{
padding: 10px;
filter:alpha(opacity=100);
opacity: 0.8;
-moz-opacity:0.8;
position: relative;
z-index:1000;
background-color:#ebecff;
}
#download-msg div table tr td,
#download-msg div table tr td small,
#download-msg a {
color:#000000;
font-weight: bold;
}
/*download message text*/
#download-msg div table{
padding: 10px;
filter:alpha(opacity=100);
opacity: 0.8;
-moz-opacity:0.8;
position: relative;
z-index:1000;
background-color:#ebecff;
}
#download-msg div table tr td,
#download-msg div table tr td small,
#download-msg a {
color:#000000;
font-weight: bold;
}
If you find Phoca extensions useful, please support the project
-
- Phoca Newbie
- Posts: 4
- Joined: 16 Mar 2008, 06:20
- Location: Germany
- Contact:
- Jan
- Phoca Hero
- Posts: 48403
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
If you find Phoca extensions useful, please support the project