tinymce Image class issue Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!How to change an element's class with JavaScript?Vertically align text next to an image?How do I give text or an image a transparent background using CSS?How can I select an element with multiple classes in jQuery?How do I auto-resize an image to fit a 'div' container?Preview an image before it is uploadedLoading TinyMCE globally for Rails appTinyMCE is not working correctly in MVC4TinyMCE with active admin doesnt load in production with railsTinyMCE buttons not showing
Using audio cues to encourage good posture
How do I stop a creek from eroding my steep embankment?
What does "lightly crushed" mean for cardamon pods?
How to answer "Have you ever been terminated?"
How do pianists reach extremely loud dynamics?
What does this Jacques Hadamard quote mean?
Can a new player join a group only when a new campaign starts?
What is the longest distance a player character can jump in one leap?
Do I really need recursive chmod to restrict access to a folder?
How to show element name in portuguese using elements package?
First console to have temporary backward compatibility
What's the meaning of "fortified infraction restraint"?
How come Sam didn't become Lord of Horn Hill?
What are the out-of-universe reasons for the references to Toby Maguire-era Spider-Man in ITSV
Is there a kind of relay only consumes power when switching?
Is it a good idea to use CNN to classify 1D signal?
What would be the ideal power source for a cybernetic eye?
Is it cost-effective to upgrade an old-ish Giant Escape R3 commuter bike with entry-level branded parts (wheels, drivetrain)?
Denied boarding although I have proper visa and documentation. To whom should I make a complaint?
Can anything be seen from the center of the Boötes void? How dark would it be?
When the Haste spell ends on a creature, do attackers have advantage against that creature?
Is there any way for the UK Prime Minister to make a motion directly dependent on Government confidence?
What is the escape velocity of a neutron particle (not neutron star)
How does the math work when buying airline miles?
tinymce Image class issue
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
Data science time! April 2019 and salary with experience
The Ask Question Wizard is Live!How to change an element's class with JavaScript?Vertically align text next to an image?How do I give text or an image a transparent background using CSS?How can I select an element with multiple classes in jQuery?How do I auto-resize an image to fit a 'div' container?Preview an image before it is uploadedLoading TinyMCE globally for Rails appTinyMCE is not working correctly in MVC4TinyMCE with active admin doesnt load in production with railsTinyMCE buttons not showing
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
i have an issue with TinyMCE.
I added the "Image" plugin and the "image_class_list" settings for set the class.
When i try to edit the image, i can't click on Class Field.
This is my JS:
Can you help me please?
tinymce.init(
bold italic );

javascript html css tinymce
add a comment |
i have an issue with TinyMCE.
I added the "Image" plugin and the "image_class_list" settings for set the class.
When i try to edit the image, i can't click on Class Field.
This is my JS:
Can you help me please?
tinymce.init(
bold italic );

javascript html css tinymce
add a comment |
i have an issue with TinyMCE.
I added the "Image" plugin and the "image_class_list" settings for set the class.
When i try to edit the image, i can't click on Class Field.
This is my JS:
Can you help me please?
tinymce.init(
bold italic );

javascript html css tinymce
i have an issue with TinyMCE.
I added the "Image" plugin and the "image_class_list" settings for set the class.
When i try to edit the image, i can't click on Class Field.
This is my JS:
Can you help me please?
tinymce.init(
bold italic );

javascript html css tinymce
javascript html css tinymce
asked Mar 8 at 18:48
Dario9494Dario9494
196
196
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
My guess is you have some sort of CSS interfering with the dialog as I don't get a horizontal purple scollbar in that dialog at all and the class field shows up just fine even when using one class option as your configuration does.
add a comment |
The issue was in CSS, other css file has display:none in the select, i fixed it adding a class with display block!
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55069265%2ftinymce-image-class-issue%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
My guess is you have some sort of CSS interfering with the dialog as I don't get a horizontal purple scollbar in that dialog at all and the class field shows up just fine even when using one class option as your configuration does.
add a comment |
My guess is you have some sort of CSS interfering with the dialog as I don't get a horizontal purple scollbar in that dialog at all and the class field shows up just fine even when using one class option as your configuration does.
add a comment |
My guess is you have some sort of CSS interfering with the dialog as I don't get a horizontal purple scollbar in that dialog at all and the class field shows up just fine even when using one class option as your configuration does.
My guess is you have some sort of CSS interfering with the dialog as I don't get a horizontal purple scollbar in that dialog at all and the class field shows up just fine even when using one class option as your configuration does.
answered Mar 8 at 21:00
Michael FrominMichael Fromin
6,8922820
6,8922820
add a comment |
add a comment |
The issue was in CSS, other css file has display:none in the select, i fixed it adding a class with display block!
add a comment |
The issue was in CSS, other css file has display:none in the select, i fixed it adding a class with display block!
add a comment |
The issue was in CSS, other css file has display:none in the select, i fixed it adding a class with display block!
The issue was in CSS, other css file has display:none in the select, i fixed it adding a class with display block!
answered Mar 8 at 21:23
Dario9494Dario9494
196
196
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55069265%2ftinymce-image-class-issue%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown