The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Problems with editor

5 posters

Go down

Solved Problems with editor

Post by Amadeus May 29th 2020, 3:18 pm

Hello, everyone. I have a problem with editing text editor, because I would like to change its colors, but unfortunately after saving them I don't save my settings and I still see white boxes. I'm asking for help. I'm giving my css code downstairs, maybe I actually did something wrong.
My forum have phpbb2.

Code:
.sceditor-container iframe, .sceditor-container textarea {
    background: #9aa8b0;
    border: 0;
    color: #111;
    font-family: Verdana,Arial,Helvetica,sans-serif;
    font-size: 13px;
    margin: 5px;
    outline: 0;
    padding: 0;
    resize: none;}

.sceditor-container {
    -moz-background-clip: padding;
    -moz-border-radius: 4px;
    -webkit-background-clip: padding-box;
    -webkit-border-radius: 4px;
    background: #7d8a95d4;
    background-clip: padding-box;
    border: 3px solid #1e2431a3;
    border-radius: 4px;
    color: #222;
    font-family: Arial,"Helvetica Neue",Helvetica,sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    position: relative;}

div.sceditor-toolbar {
    -moz-background-clip: padding;
    -moz-border-radius: 3px 3px 0 0;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-background-clip: padding-box;
    -webkit-border-radius: 3px 3px 0 0;
    -webkit-user-select: none;
    background: #4d5a6ae8;
    background-clip: padding-box;
    border-bottom: 4px solid #1e2431b5;
    border-radius: 3px 3px 0 0;
    line-height: 0;
    overflow: hidden;
    padding: 3px 5px 2px;
    user-select: none;}

div.sceditor-group {
    -moz-background-clip: padding;
    -moz-border-radius: 3px;
    -webkit-background-clip: padding-box;
    -webkit-border-radius: 3px;
    background: #a4aeba;
    background-clip: padding-box;
    border-bottom: 2px solid #1e2431b0;
    border-radius: 3px;
    display: inline-block;
    margin: 1px 5px 1px 0;
    padding: 1px;}



Last edited by Amadeus on June 7th 2020, 5:53 pm; edited 1 time in total
Amadeus
Amadeus
Forumember

Female Posts : 157
Reputation : 1
Language : Polish, English
Location : Poland

Back to top Go down

Solved Re: Problems with editor

Post by Ape May 29th 2020, 5:11 pm

Hello I think i see your problem Wink

if you look at your colour's you have
Code:
#1e2431b0

if you count the numbers you have 8 the code should have no more then 6 >>
Code:
#369fcf
so try and change them to 6 numbers and letters

also you have some settings as "0" you should put none or 0px "0" on it's own can mess things up


Problems with editor Left1212Problems with editor Center11Problems with editor Right112
Problems with editor Ape_b110
Problems with editor Ape1010
Ape
Ape
Administrator
Administrator

Male Posts : 19122
Reputation : 1993
Language : fluent in dork / mumbojumbo & English haha

http://chatworld.forumotion.co.uk/

Back to top Go down

Solved Re: Problems with editor

Post by Amadeus May 29th 2020, 6:18 pm

And if I wanted to do it, on a transparent shade of this colour, how about then? Because when I do in the browser console I noticed that when I change the transparency of the color it makes me one number forward, but it doesn't make me rgb (value of numbers).?
Amadeus
Amadeus
Forumember

Female Posts : 157
Reputation : 1
Language : Polish, English
Location : Poland

Back to top Go down

Solved Re: Problems with editor

Post by skouliki May 29th 2020, 8:02 pm

skouliki
skouliki
Manager
Manager

Female Posts : 15133
Reputation : 1696
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

Solved Re: Problems with editor

Post by SLGray May 30th 2020, 1:30 am

Did you try changing the colors of the editor in the color tab before using the CSS?


Problems with editor Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51489
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

Solved Re: Problems with editor

Post by Ape May 30th 2020, 2:44 am

I use this to fade colours
Code:
opacity: 1;


Problems with editor Left1212Problems with editor Center11Problems with editor Right112
Problems with editor Ape_b110
Problems with editor Ape1010
Ape
Ape
Administrator
Administrator

Male Posts : 19122
Reputation : 1993
Language : fluent in dork / mumbojumbo & English haha

http://chatworld.forumotion.co.uk/

Back to top Go down

Solved Re: Problems with editor

Post by mSyx May 30th 2020, 3:29 pm

Oy,
Is this what you meant to have?

Problems with editor Screenshot-75
mSyx
mSyx
Forumember

Male Posts : 155
Reputation : 47
Language : French & English
Location : France

https://help.forumotion.com/

Back to top Go down

Solved Re: Problems with editor

Post by Ape May 30th 2020, 9:32 pm

That is what you should have but it's looking a little strange it should look a little like our's but then again if you are making change then you make it look how you like it to be


Problems with editor Left1212Problems with editor Center11Problems with editor Right112
Problems with editor Ape_b110
Problems with editor Ape1010
Ape
Ape
Administrator
Administrator

Male Posts : 19122
Reputation : 1993
Language : fluent in dork / mumbojumbo & English haha

http://chatworld.forumotion.co.uk/

Back to top Go down

Solved Re: Problems with editor

Post by Amadeus May 31st 2020, 4:05 am

mSyx wrote:Oy,
Is this what you meant to have?

Problems with editor Screenshot-75

Yes
Amadeus
Amadeus
Forumember

Female Posts : 157
Reputation : 1
Language : Polish, English
Location : Poland

Back to top Go down

Solved Re: Problems with editor

Post by mSyx May 31st 2020, 1:25 pm

You have to force your CSS so it overrides the default CSS. This can be done by adding !important on each property or by adding global containers, such as body {

Code:
body .sceditor-container iframe, body .sceditor-container textarea {
    background: #9aa8b0;
    border: 0;
    color: #111;
    font-family: Verdana,Arial,Helvetica,sans-serif;
    font-size: 13px;
    margin: 5px;
    outline: 0;
    padding: 0;
    resize: none;}
 
body .sceditor-container {
    -moz-background-clip: padding;
    -moz-border-radius: 4px;
    -webkit-background-clip: padding-box;
    -webkit-border-radius: 4px;
    background: #7d8a95d4;
    background-clip: padding-box;
    border: 3px solid #1e2431a3;
    border-radius: 4px;
    color: #222;
    font-family: Arial,"Helvetica Neue",Helvetica,sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    position: relative;}
 
body div.sceditor-toolbar {
    -moz-background-clip: padding;
    -moz-border-radius: 3px 3px 0 0;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-background-clip: padding-box;
    -webkit-border-radius: 3px 3px 0 0;
    -webkit-user-select: none;
    background: #4d5a6ae8;
    background-clip: padding-box;
    border-bottom: 4px solid #1e2431b5;
    border-radius: 3px 3px 0 0;
    line-height: 0;
    overflow: hidden;
    padding: 3px 5px 2px;
    user-select: none;}
 
body div.sceditor-group {
    -moz-background-clip: padding;
    -moz-border-radius: 3px;
    -webkit-background-clip: padding-box;
    -webkit-border-radius: 3px;
    background: #a4aeba;
    background-clip: padding-box;
    border-bottom: 2px solid #1e2431b0;
    border-radius: 3px;
    display: inline-block;
    margin: 1px 5px 1px 0;
    padding: 1px;}
mSyx
mSyx
Forumember

Male Posts : 155
Reputation : 47
Language : French & English
Location : France

https://help.forumotion.com/

Back to top Go down

Solved Re: Problems with editor

Post by Ape June 8th 2020, 2:23 am

Problem solved & topic archived.
Please read our forum rules: ESF General Rules

If this is not solved then Please feel free to PM me with the link to this topic and i will reopen it Wink


Problems with editor Left1212Problems with editor Center11Problems with editor Right112
Problems with editor Ape_b110
Problems with editor Ape1010
Ape
Ape
Administrator
Administrator

Male Posts : 19122
Reputation : 1993
Language : fluent in dork / mumbojumbo & English haha

http://chatworld.forumotion.co.uk/

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum