The theme is under construction, please let us know any bugs you see in the meantime.
The theme is under construction, please let us know any bugs you see in the meantime.

SMF 2.1 RC editör

replikacep

Tam Üye
Katılım
15 Ara 2018
Mesajlar
237
Tepkime puanı
30
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 ?

 

orhan

Moderator
Katılım
5 Ara 2018
Mesajlar
466
Tepkime puanı
91
Puanları
28
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;
 

replikacep

Tam Üye
Katılım
15 Ara 2018
Mesajlar
237
Tepkime puanı
30
Puanları
28
Yaş
1020
Web sitesi
www.replikacep.com
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
 

replikacep

Tam Üye
Katılım
15 Ara 2018
Mesajlar
237
Tepkime puanı
30
Puanları
28
Yaş
1020
Web sitesi
www.replikacep.com
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