Forums / Cotonti / Support / Textboxer forum

SparrozzoIT
#1 2009-07-17 02:41
It's possible painting the "textbox" of the forum ?
Example: I have a skin with css an the text is white...the skin background is black...if I write on the textbox i dont "see" nothing...it's possible change background color of textboxer ?
Tnx guys :-)
musiconly
#2 2009-07-17 02:59
assuming you mean on markitup.

/public_html/plugins/markitup/skins/markitup

file: style.css

.markItUpEditor {
	font:12px 'Courier New', Courier, monospace;
	/*padding:5px 5px 5px 5px;*/
	border:1px solid #3C769D;
	width:98%;
	/*height:320px;*/
	background-image:url(images/bg-editor.png);
	background-repeat:no-repeat;
	clear:both; display:block;
	line-height:18px;
	overflow:auto;
}

to

.markItUpEditor {
	font:12px 'Courier New', Courier, monospace;
	/*padding:5px 5px 5px 5px;*/
	border:1px solid #3C769D;
	width:98%;
	/*height:320px;*/
	background-color: #000000;
	clear:both; display:block;
	line-height:18px;
	overflow:auto;
}

Dit bericht is bewerkt door musiconly (2009-07-17 03:05, 14 jaren ago)
pieter
#3 2009-07-17 03:09
If you do that it is changed for all skins. If you have more than one skin, do the following:

Lombi gave me the tip:
Add these CSS-part into the skin-CSS. The skin-CSS is loaded after the markitup. So it overrides it.

I did this for the sed-dark skin:
/* ============== markItUp CSS ============== */
.markItUpContainer  {
	border:1px solid #3C769D;
	background:#FFF!important;
	padding:5px 5px 2px 5px;
	font:11px Verdana, Arial, Helvetica, sans-serif;
	}
	
.markItUpEditor {
	font:12px 'Courier New', Courier, monospace;
	padding:5px 5px 5px 5px;
	border:1px solid #3C769D;
	width:98%;
	/*height:320px;*/
	background-image:none!important;
	background-repeat:no-repeat;
	clear:both; display:block;
	line-height:18px;
	overflow:auto;
}
... can we help you ...
musiconly
#4 2009-07-17 03:10
Nice, didn't know about that. :-)
Thanks pieter!
Lombi
#5 2009-07-17 03:15
I forgot I gave you that tip as well :-/
<a href="http://www.domenlo.com">Surreal Art</a>
musiconly
#6 2009-07-17 03:19
hahahah.. that's because you give a lots of tips to a lots of people :-X
SparrozzoIT
#7 2009-07-17 03:48
ok pieter...now work it ! ;-)
Please Lombi, insert this in "Tips Giude" :-P