SMF 2.1 RC editör

Merhaba, tekrar hoş geldiniz!

Bilgi sahibi olanlarla ihtiyaç duyanları buluşturmak, farklı bakış açılarına sahip insanları bir araya getirerek birbirlerini daha iyi anlamalarını sağlamak ve herkesin bilgisini paylaşmasını sağlamak istiyoruz.

replikacep

Tam Üye
Katılım
15 Ara 2018
Mesajlar
233
Tepkime puanı
29
Puanları
28
Yaş
1020
Web sitesi
www.replikacep.com
Kod:
<div class="sceditor-container ltr sourceMode" style="width: 870.333px; height: 265px;">

Orhan  bey bana bi  konuda yardım edermisiniz  sceditor-container ltr sourceMode  bu div class  da yer alan hangi dosyada olabilir  yerini bulamadım  height: 265px;  bunu  height: 465px;  olarak degiştirmem gerekiyor ama yerini bulamıyorum  editör igrenç gözüküyor  özelleştirilmiş smiley leri  aktif edince aşasında ki yazı  yazdıgımız yer çok küçük kalıyor 

satır içinde diyor kodlara ama hangi dosyada bu  satır içi ?

 
merhaba js ye auto div atilmiş oyle bir kod yok sanirim sizin sorunu gidermek icin
jquery.sceditor.css
şu kodu bulun

Kod:
.sceditor-insertemoticon {
    padding: 4px !important;
}

yukseklik ekleyin

min-height: 100px;

tamami icin

bul

Kod:
.sceditor-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    background: #fff;
    border: 1px solid #d9d9d9;
    font-size: 13px;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    color: #222;
    line-height: 1;
    font-weight: bold;
    height: 250px;
    border-radius: 4px;
    background-clip: padding-box;
    min-width: 100%;
    max-width: 100%;
}

bunu ekle

Kod:
.sceditor-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    background: #fff;
    border: 1px solid #d9d9d9;
    font-size: 13px;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    color: #222;
    line-height: 1;
    font-weight: bold;
    height: 250px;
    border-radius: 4px;
    background-clip: padding-box;
    min-width: 100%;
    max-width: 100%;
    min-height: 405px;
}

min-height: 405px;
 
sagulun hocam 
Kod:
.sceditor-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    background: #fff;
    border: 1px solid #d9d9d9;
    font-size: 13px;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    color: #222;
    line-height: 1;
    font-weight: bold;
    height: 250px;
    border-radius: 4px;
    background-clip: padding-box;
    min-width: 100%;
    max-width: 100%;
    min-height: 405px;
}


bunu ekledim yeterli oldu
 
belki başkalarınında işine yarar  : https://www.simplemachines.org/community/index.php?topic=564943.0

maximus23' Alıntı:
Hello,

Modify the height here :

File : Sources\Post.php

Search:

Kod:
	// Now create the editor.
	$editorOptions = array(
		'id' => 'message',
		'value' => $context['message'],
		'labels' => array(
			'post_button' => $context['submit_label'],
		),
		// add height and width for the editor
		'height' => '275px',
		'width' => '100%',
		// We do XML preview here.
		'preview_type' => 2,
		'required' => true,
	);

:)
 
Geri
Üst Alt