Смешного в ответе не нашел

Где улыбнуло?
.cofiEntryContentText1 {
float: left;
width: 60%;
/* height: 200px; */
border-right: 1px solid #CCCCCC;
}
.cofiEntryContentText2 {
float: left;
width: 35%;
padding: 0px 0px 0px 30px;
/* text-align: right; */
}
Меняем на
.cofiEntryContentText1 {
float: left;
width: 100%;
/* height: 200px;
border-right: 1px solid #CCCCCC;*/
}
/*.cofiEntryContentText2 {
float: left;
width: 35%;
padding: 0px 0px 0px 30px;
text-align: right; */
}
В объявлении будет отсутствовать фото. Все поле будет занято информацией и текстом.
Для полного счастья правим файл components/com_marketplace/views/entry/tmpl/dafault.php
[spoiler title=Код]
/*
if ( $this->image1 == "") { // show default image
echo "<img src='". $_root ."/components/com_marketplace/assets/entries/default.png' class='cofiEntryContentImage' />";
}
else {
echo "<a href='" . $_root . "images/marketplace/entries/" . $this->id . "/large/" . $this->image1 . "' " . $_linktag . " title='".$_titleprefix.$this->headline . " 1' >";
echo "<img src='" . $_root . "images/marketplace/entries/" . $this->id . "/small/" . $this->image1 . "' class='cofiEntryContentImage' />";
echo "</a>";
}
if ( $this->image2 != "") {
echo "<a href='" . $_root . "images/marketplace/entries/" . $this->id . "/large/" . $this->image2 . "' " . $_linktag . " title='".$_titleprefix.$this->headline . " 2' >";
echo "<img src='" . $_root . "images/marketplace/entries/" . $this->id . "/small/" . $this->image2 . "' class='cofiEntryContentImage' />";
echo "</a>";
}
if ( $this->image3 != "") {
echo "<a href='" . $_root . "images/marketplace/entries/" . $this->id . "/large/" . $this->image3 . "' " . $_linktag . " title='".$_titleprefix.$this->headline . " 3' >";
echo "<img src='" . $_root . "images/marketplace/entries/" . $this->id . "/small/" . $this->image3 . "' class='cofiEntryContentImage' />";
echo "</a>";
}
if ( $this->image4 != "") {
echo "<a href='" . $_root . "images/marketplace/entries/" . $this->id . "/large/" . $this->image4 . "' " . $_linktag . " title='".$_titleprefix.$this->headline . " 4' >";
echo "<img src='" . $_root . "images/marketplace/entries/" . $this->id . "/small/" . $this->image4 . "' class='cofiEntryContentImage' />";
echo "</a>";
}
if ( $this->image5 != "") {
echo "<a href='" . $_root . "images/marketplace/entries/" . $this->id . "/large/" . $this->image5 . "' " . $_linktag . " title='".$_titleprefix.$this->headline . " 5' >";
echo "<img src='" . $_root . "images/marketplace/entries/" . $this->id . "/small/" . $this->image5 . "' class='cofiEntryContentImage' />";
echo "</a>";
}
if ( $this->image6 != "") {
echo "<a href='" . $_root . "images/marketplace/entries/" . $this->id . "/large/" . $this->image6 . "' " . $_linktag . " title='".$_titleprefix.$this->headline . " 6' >";
echo "<img src='" . $_root . "images/marketplace/entries/" . $this->id . "/small/" . $this->image6 . "' class='cofiEntryContentImage' />";
echo "</a>";
}
if ( $this->image7 != "") {
echo "<a href='" . $_root . "images/marketplace/entries/" . $this->id . "/large/" . $this->image7 . "' " . $_linktag . " title='".$_titleprefix.$this->headline . " 7' >";
echo "<img src='" . $_root ."images/marketplace/entries/" . $this->id . "/small/" . $this->image7 . "' class='cofiEntryContentImage' />";
echo "</a>";
}
if ( $this->image8 != "") {
echo "<a href='" . $_root . "images/marketplace/entries/" . $this->id . "/large/" . $this->image8 . "' " . $_linktag . " title='".$_titleprefix.$this->headline . " 8' >";
echo "<img src='" . $_root ."images/marketplace/entries/" . $this->id . "/small/" . $this->image8 . "' class='cofiEntryContentImage' />";
echo "</a>";
}
if ( $this->image9 != "") {
echo "<a href='" . $_root . "images/marketplace/entries/" . $this->id . "/large/" . $this->image9 . "' " . $_linktag . " title='".$_titleprefix.$this->headline . " 9' >";
echo "<img src='" . $_root . "images/marketplace/entries/" . $this->id . "/small/" . $this->image9 . "' class='cofiEntryContentImage' />";
echo "</a>";
}
if ( $this->image10 != "") {
echo "<a href='" . $_root . "images/marketplace/entries/" . $this->id . "/large/" . $this->image10 . "' " . $_linktag . " title='".$_titleprefix.$this->headline . " 10' >";
echo "<img src='" . $_root . "images/marketplace/entries/" . $this->id . "/small/" . $this->image10 . "' class='cofiEntryContentImage' />";
echo "</a>";
}
*/
[/spoiler]