Posted: Thu 3. Aug 2006, 21:22
Also in der 1.2.7 hat sich das Feld noch vergrößert...
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/
Auch in der Version... bei mir keine Veränderung????Rahner wrote:Also in der 1.2.7 hat sich das Feld noch vergrößert...
Wie machst du das:pepe wrote:Bei dem CP Text mit Bild wird für beide Tabellenvarianten die classe
imgDIVblockImgRight ausgegeben anstelle von : imgDIVblockImgLeft für den entsprechenden Fall
Das war auch schon bei der 1.2.7pre falsch....!!!
Ausserdem sollten in der frontend.css auch für beide Klassen schon Werte enthalten sein! Jeder Anfäger verzweifelt sonst
.imgDIVblockImgLeft { margin-right: 10px; }
.imgDIVblockImgRight { margin-left: 10px; }
phpwcms.css nicht frontend.csspepe wrote:@flip-flop... seit wann das???Die phpwcms.css wird doch nur im Backend verwendet.
Bei mir war das vor dem TemplateWizard immer:<link rel="stylesheet" type="text/css" href="phpwcms_template/inc_css/frontend.css">
Javascript deaktiviert?pepe wrote:Auch in der Version... bei mir keine Veränderung????Rahner wrote:Also in der 1.2.7 hat sich das Feld noch vergrößert...
Hatte ich schon bemerkt... zu schnell gelesen War schon gelöscht... aber du schon beim Kommentieren!phpwcms.css nicht frontend.css
Das kommt bei mir raus:Bei mir wird ein schlankes: <table class="imgTextLeft" ..... oder "imgTextRight" .... generiert, trotz DIV = Ja.
wenn ich die angegebenen Klassen dann in der frontend.css einfüge, alles so, wie ich's immer schon haben wollte....<td valign="top" width="10%" class="image_td"><div class="imgDIVblockImgRight"><div class="image_td"><img src="content/images/Bild.jpg" width="164" height="123" border="0" class="image_img" alt="Bild.jpg" title="Bild.jpg" /></div><p class="image_caption">Bildunterzeile</p></div></td>
Code: Select all
www .mz.ja-nek .de/de_kontakt_custom.phtml
So seh ich's auch...Die Basis für mehr ist aber nun vorhanden.
Code: Select all
function headline($head, $subhead, $layout) {
$c = '';
if($head) {
$c .= $layout["content_head_before"].
//span_class(html_specialchars($head), $layout["content_head_class"]).
html_specialchars($head).
$layout["content_head_after"];
}
if($subhead) {
$c .= $layout["content_subhead_before"].
//span_class(html_specialchars($subhead), $layout["content_subhead_class"]).
html_specialchars($subhead).
$layout["content_subhead_after"];
}
return $c;
}
Code: Select all
function headline($head, $subhead, $layout) {
$c = '';
if($head) {
$c .= $layout["content_head_before"];
$c .= html_specialchars($head);
$c .= $layout["content_head_after"];
}
if($subhead) {
$c .= $layout["content_subhead_before"];
$c .= html_specialchars($subhead);
$c .= $layout["content_subhead_after"];
}
return $c;
}
Code: Select all
$iconimg = imagediv($phpwcms, $image, 'blockImgRight');
Code: Select all
$iconimg = imagediv($phpwcms, $image, 'blockImgLeft'); // patch