Üyeliğin hakkında sorunlar👨🏼‍🔧yaşıyorsanız bunu bizimle paylaşa bilirsiniz
Forum içeriğine ve tüm hizmetlerimize erişim sağlamak için foruma kayıt olmalı ya da giriş yapmalısınız.
  • Sitemiz Bir Webmaster forumu ve tartışma platformu dur webmaster forumu dışındaki konular yasaktır direkt silinecektir.
  • Our site is a Webmaster forum and discussion platform. Topics outside the webmaster forum are prohibited and will be deleted immediately.

SMF 2.1 RC editör

Welcome to our site, Guest

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

replikacep

Tam Üye
Joined
Dec 15, 2018
Messages
237
Reaction score
30
Points
28
Age
1020
Website
www.replikacep.com
Code:
<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

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

yukseklik ekleyin

min-height: 100px;

tamami icin

bul

Code:
.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

Code:
.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 
Code:
.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 said:
Hello,

Modify the height here :

File : Sources\Post.php

Search:

Code:
	// 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,
	);

:)
 
Back
Top Bottom