I'm installing TinyMCE on a site of ours. All seems to of installed fine apart from a problem I am having with the popup windows for image, html etc etc. The popup's appear to be empty but when I view the source, the code is there but there is inline styling on the body to display: none.
Does anybody know why this is happening?
Thanks
Related
My question is the same as this Stackoverflow question, I want to prevent the brief flash of HTML that happens on a page with a TinyMCE editor. The problem with the answer to that other Stackoverflow question is that it does not seem to work with TinyMCE 4. I set display:none; of the textarea containing the HTML to edit. And in the init callback for TinyMCE, I reset it to display:block;. All that happens is that the original textarea is displayed on the page, with no sign of the TinyMCE editor.
Try using the visibility property instead.
I am new at fancybox and am having trouble. I think I have done it right, according to what the fancybox site says. I have a few images and wanted to hide all but one and then have a slide show. This worked great when I was working local but now it is missing a bunch of styling it seems and it is not hiding the other images.
Here is one of the pages:
http://josborneanderson.com/design/farmers.html
It looks like you are missing this file on your server.
http://josborneanderson.com/fancybox/source/jquery.fancybox.css?v=2.1.5
I tray to use CKEditor inside FancyBox, all work great, but if i try to add for ex. table all fields is disabled. (I attach an image. The same for image, flash...)
I try to open CKEditor without FancyBox and it's work OK but i need like with FancyBox.
jQuery UI (which I believe is used in your system, but in fact the same issue occures when using Twitter Bootstrap) is blocking all inputs in CKEditor's dialogs. It seems that guys from jQuery UI were working on this issue, but I'm not sure if new version, including this fix, has been already released.
Check this bug report on CKEditor trac for more info.
I need to build a tab looking like this one:
https://www.facebook.com/auto.co.il/app_134594493332806
I know how to add an image and a comment box and i know of several "plain" ways to hide the content from non-fans, but i came across the above tab and i really like the way it shows thee content yet you cant engage it until you press the like button.
Any help please?
Thanks in advance.
Oren
Your link didn't work for me, but you can place a absolutely positioned div with a high z-index above the rest of your content to prevent the user from clicking on anything.
Update: Now that the link has been updated I see that they are doing exactly what I described above. In chrome if you right-click the background and select "inspect element" you will see the following computed style for the div:
rgba(0,0,0,0.796);
display:block;
height:1612px;
width:810px;
The content is blacked out simply with a div with a black background and some opacity. Just for fun, you can overcome their like gate (without liking) via chrome's JS console by selecting the iframe context and then entering the following:
$('.like_float_c').detach();
... now call youself a 'hacker' ;)
I am working on a site and the header element is completely disappearing in only IE7 (it shows in IE6 and IE8). It shows for a second, then once the whole page is loaded, it disappears. I have no idea what could be causing this. The portion disappearing is the section I have included via PHP, but it still doesn't show when I actually insert it into the file, so I don't think that is the problem. Any help would be appreciated. I can post any code that would be helpful, but most of it should be able to be found through the view source or inspecting an element.
On a side note, my opacities aren't working in any version of IE either. I have them in a separate IE CSS document and am using the filters, so I am not sure why it is not working.
I figured it out. Apparently IE7 doesn't like negative z-index values and so was placing my background image over certain elements on the page that were above it in the HTML. Strange, but that's IE for you I guess.