Text/Image: delete cell between Img and caption (how to?)
Text/Image: delete cell between Img and caption (how to?)
Hi out there,
I want to take away the cell between the Image and the corresponding caption. Does anybody know how to do this
Greetings
aborre
I want to take away the cell between the Image and the corresponding caption. Does anybody know how to do this
Greetings
aborre
just had a look at this file for the first time myself. And I can't see anything. But I've got no coding knowledge either
This file definately has something to do with this contentpart's image positioning.
It's got the line ($image[6]) ? imagetable($phpwcms, $image, "0:5:0:0", "") : ""; in there. I wonder whether "imagetable is defined in some other file and needs to be modified there.
This file definately has something to do with this contentpart's image positioning.
It's got the line ($image[6]) ? imagetable($phpwcms, $image, "0:5:0:0", "") : ""; in there. I wonder whether "imagetable is defined in some other file and needs to be modified there.
Hi aborre,
in your file include/inc_conf/conf.template_default.inc.php change the line:
$template_default["article"]["image_caption_before"] = '<img src="img/leer.gif" width="1" height="3" alt="" /><br>';
to:
$template_default["article"]["image_caption_before"] = '';
and see, what happens...
PS
= ''; means = 'nothing_here';
in your file include/inc_conf/conf.template_default.inc.php change the line:
$template_default["article"]["image_caption_before"] = '<img src="img/leer.gif" width="1" height="3" alt="" /><br>';
to:
$template_default["article"]["image_caption_before"] = '';
and see, what happens...
PS
= ''; means = 'nothing_here';
Hi pepe,
thank you for the hint, but this cannot work, because the empty gif belongs to the captioncell itself.
After all, and with the help of you guys, I figured it out:
Change line 121 in front.func.inc.php
from: $table .= "<tr><td".$colspan.">".spacer(1,3)."</td></tr>\n";
to: $table .="";
thats it
aborre
thank you for the hint, but this cannot work, because the empty gif belongs to the captioncell itself.
After all, and with the help of you guys, I figured it out:
Change line 121 in front.func.inc.php
from: $table .= "<tr><td".$colspan.">".spacer(1,3)."</td></tr>\n";
to: $table .="";
thats it
aborre