Is it possible to remove this title/tooltip "Menu" ApexChart - apexcharts

Image of the download icon and title that appears as hover
Is it possible to remove this title/tooltip "Menu" ? ApexChart 3.36.3
I didn't find in the documentation how to remove this title, from this location.

Related

How to show "edit image" in Sitecore experience editor?

In sitecore "content editor" we can use the "image editor" by clicking "edit image" in the data section, but in the experience editor it is not visible.
is there a way to make available for editors to use the image editor? or this behavior is a sitecore standard?
thanks for help
Picture field
I've just written it up in a blog post.
First you'll need to add a new button under
/sitecore/system/Field types/Simple Types/Image/WebEdit Buttons
You can duplicate one of the existing ones and change the icon and text yourself. Make the contents of the Click field:
chrome:field:editcontrol({command:"webedit:changeimage"})
(there's already a webedit:editimage so we can't name it that).
Open App_Config\Include\Sitecore.ExperienceEditor.config and duplicate the entry for webedit:chooseimage. Change the command name to webedit:changeimage as per above. Then change the type to the class you will create below.
If you have access to a decompiler, take a look at the existing command Sitecore.Shell.Framework.Commands.Shell.EditImage as well as the existing command
for selecting an image in Experience Editor Sitecore.Shell.Applications.WebEdit.Commands.ChooseImage. You'll see that they're similar, but unfortunately they use two different
methods of opening a dialog (Windows.RunApplication and SheerResponse.ShowModalDialog) so we can't reuse the existing class as-is. I have created a class that uses a bit of both (link below).
Create your class (eg. EditImage.cs), make it serializable and inherit from WebEditImageCommand like the other EE buttons. I have posted the full class as a gist for you.
When you select an image in the Experience Editor, you should now have an extra button in the list which opens the image editor in a modal window when clicked.
You need to do next steps, is not the most elegant way but you can do it:
In the Experience Editor, click the image that you want to edit, and in the floating toolbar that appears, click More and then Edit the related item. This opens the item in the Content Editor, from where you can scroll to the field that contains the image and click Edit image.

How we can highlight first item of a ClistCtrl which is created in ICON format?

How we can highlight first item of a ClistCtrl which is created in ICON format? I want to highlight first item default.
Use
CListCtrl::SetItemState(0,LVIS_SELECTED|LVIS_FOCUSED,LVIS_SELECTED|LVIS_FOCUSED);
You find all Infos about such things in the MSDN.

Sitecore Remove Button

I have a "Slide Show" control and I'd like to remove the first "X" button in the tool bar of the control. I have checked .ascx and .ascx.cs file to see if there is any related code, but nothing.
I think these buttons are from Core DB and I don't know where I can remove or hide this "X" button in Sitecore.
Could you help me, please?
Find Slide Show sublayout in your Sitecore tree.
Scroll to Editor Options section and remove Delete from the Page Editor Buttons field.

How to open Firefox 3.6.13 without titlebar

I need to remove the Titlebar in Firefox 3.6.13 window. I googled and found this link: http://www.mozilla.org/unix/customizing.html
I realized removing the Title Bar is possible by changing the file userChrome.css in this Path :
/home/../.mozilla/firefox/../chrome/userChrome.css
but I could not find the syntax to write in userChrome.css. How I can solve it ?
NOTE: This answer was provided prior to it being known that the question was about Firefox 3.6.13 (mentioned for the first time in the comments to this answer). After that comment was made, I edited the question and title to include that significant piece of information. This answer has been left here in case someone looking for the information for current versions of Firefox happens to land on this page as the result of a search.
For the last few/several versions of Firefox (from Firefox 29.0), the "Title Bar" has been hidden by default.
You can hide/unhide the "Title Bar" from the customization dialog which can be reached by clicking on the icon on the far right of the toolbar containing the urlbar. This icon, by default, looks like 3 horizontal lines. You will then need to click "Customize" (bottom left of popup). The button to display/hide the "Title Bar" is on the bottom left of the window which will be displayed within the browser upon hitting customize.
You can also directly change the option to show the "Title Bar". In about:config (enter about:config in the urlbar) you can change the state of browser.tabs.drawInTitlebar.

SiteCore-Shifting of a placeholder above and inhibiting the edit of further items in the page in Edit Mode

I have following arrangement of placeholders in the site.
top-placeholder
bottom-placeholder
Here top-placeholder will hold a sublayout displaying the Image and bottom-placeholder showing some navigation links in the site. Here in the edit mode, whenever I delete the sublayout shown in the top-placeholder the navigation in the bottom-placeholder moves top and after this I can't edit further and also can't insert the image again in the top-placeholder as I don't see the top-placeholder again.
Please let me know if I am missing any setting or what could be the issue for shifting of sublayout containing navigation links and not allowing me to edit/insert image again.
It looks like after you remove the sublayout from your top-placeholder, it is collapsed as there is no content inside and there are no css styles that would set some minimum height and width for this placeholder. That's why you can not select it to add new sublayouts.
Try to add some additional css styles that will be displayed only in page editor editing mode ( Sitecore.Context.PageMode.IsPageEditorEditing ) that will set the minimum height and width of the top-placeholder.