Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
483 views
in Q2A Core by
Hello,

I'm using a plugin to embed youtube video. It works but there is a concern. The videos are not responsive, which means they pop out of viewing area in mobile devices.

Normally, I can make them responsive by using a "wrapper" DIV tag. However, it looks as if Q2A does not allow DIV tags in questions' content.

How can I find a solution?
Q2A version: 1.83

2 Answers

0 votes
by
edited by

Well of course, Q2A doesn't allow the conversion of markup to actual HTML for security reasons.
Doing that would open a door for hackers, an exploitation for code injection, which is one of the methods used by hackers when performing an attack.

In you want to make such changes, you'll need to access the plugin's source code.

by
The real threat is the javascript, but I do have content security criteria to stop this. But DIV tags are harmless, I think.
The plugin code does have the ability to add "div" tags, but it seems that the Q2A's HTMLAW cleans things off.
by
Hello gold developer check your inbox.
–1 vote
by
I found a way through CSS job.
iframe {
  width: 50vw;
  height: 28.125vw; /*16:9*/
}
...