Pagina 2 din 2

Re: aranjarea atasamentelor pe orizontala?

Scris: 23-Apr-2014, 13:49:26
de Anișor
Încearcă asta :
Caută

Cod: Selectaţi tot

<!-- BEGIN inline_attachment_close --></td></tr></table><!-- END inline_attachment_close -->
Înlocuiește cu :

Cod: Selectaţi tot

<!-- BEGIN inline_attachment_close --></td></tr></table><br /><!-- END inline_attachment_close -->

Re: aranjarea atasamentelor pe orizontala?

Scris: 03-Mai-2014, 10:33:50
de AlinE
nu merge cu <br />.

datorita celor 2 randuri din BBcode pentru prosilver:

Cod: Selectaţi tot

<!-- BEGIN inline_attachment_open --><table><tr><td><!-- END inline_attachment_open -->
<!-- BEGIN inline_attachment_close --></td></tr></table><!-- END inline_attachment_close -->
pentru o poza pusa intre 2 paragrafe nu este nici o problema, in schimb daca este un calup de 3 poze (de exemplu) apar problemele datorita codului de mai sus, aranjarea lor facandu-se pe verticala:

Cod: Selectaţi tot

<table>
   <tbody>
      <tr>
         <td>
             <div class="thumbnail">
			poza1
	     </div>
         </td>
      </tr>
    </tbody>
</table>
<table>
   <tbody>
      <tr>
         <td>
             <div class="thumbnail">
			poza2
	     </div>
         </td>
      </tr>
    </tbody>
</table>
<table>
   <tbody>
      <tr>
         <td>
             <div class="thumbnail">
			poza3
	     </div>
         </td>
      </tr>
    </tbody>
</table>
normal nu ar fi trebuit sa apara ceva de genul?:

Cod: Selectaţi tot

<table>
   <tbody>
      <tr>
         <td>
             <div class="thumbnail">
			poza1
                        poza2
                        poza3
	     </div>
         </td>
      </tr>
    </tbody>
</table>

Re: aranjarea atasamentelor pe orizontala?

Scris: 07-Mai-2014, 10:39:47
de AlinE
cred ca am gasit o solutie pe care am implementat-o si la prima vedere este buna.
Solutia (repet pentru prosilver cu modul Horizontal instalat):

template/bbcode.html initial:

Cod: Selectaţi tot

<!-- BEGIN inline_attachment_open --><table><tr><td><!-- END inline_attachment_open -->
<!-- BEGIN inline_attachment_close --></td></tr></table><!-- END inline_attachment_close -->
template/bbcode.html modificat:

Cod: Selectaţi tot

<!-- BEGIN inline_attachment_open --><!-- END inline_attachment_open -->
<!-- BEGIN inline_attachment_close --><!-- END inline_attachment_close -->
theme/content.css initial:

Cod: Selectaţi tot

.content p {
	font-family: "Lucida Grande", "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
	font-size: 1.2em;
	margin-bottom: 1em;
	line-height: 1.4em;
}

dl.faq {
	font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
	font-size: 1.1em;
	margin-top: 1em;
	margin-bottom: 2em;
	line-height: 1.4em;
}
theme/content.css modificat:

Cod: Selectaţi tot

.content p {
	font-family: "Lucida Grande", "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
	font-size: 1.2em;
	margin-bottom: 1em;
	line-height: 1.4em;
}

.content br {
	clear: left;
}

dl.faq {
	font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
	font-size: 1.1em;
	margin-top: 1em;
	margin-bottom: 2em;
	line-height: 1.4em;
}
acum pozele atasate in linie vor aparea pe orizontala si urmatorul paragraf va porni sub randul de poze/poza, singura problema la Solutia gasita de mine este faptul ca nu trebuie dat ENTER intre pozele puse intre 2 paragrafe si trebuie dat ENTER intre pozele puse in linie si textul urmatorului paragraph.