Because of fixed header modal box is not working in bootstrap - bootstrap-modal

i have a fixed header which uses a bootstrap class "navbar-fixed-top" on my page. A search icon on click of which i have a modal box.This modal box is not working but when i remove the class "navbar-fixed-top", the modal box is working. I'm not able to fix the issue, please someone help

Related

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.

Foundation Joyride issue in IE 10 - Highlighted button not visible

I am using Foundation's joyride plugin, everything is working fine in chrome and ff, as usual ie is messing in some areas.
I am highlighting a save button like after completing the form click this button to submit.
But that button is not visible in ie10, when the joyride highlights that button.
I dint get any js errors in my console
Strange thing is that when I open the ie 10 developer console the button is displayed.
please help me fix this issue

dropdown menu doesn't work in katana yootheme joomla template

I have tried everything but I can't get the dropdown menu to work with yootheme katana template for joomla 2.5. Everything is set up right in module preferences, and the menus work fine with other yootheme temlpates. Any ideas? Thank you.
You should ask them for support and let them check your site, but there is a small hack that worked for me several times while Joomla 3 was recently launched.
Go to your Joomla Administration Panel --> Extensions --> Module Manager, then click on your Main Menu or the menu that is having trouble, when it is opened go to Advanced, look for Menu Class Suffix and add this text "nav-pills" or in some cases leave a blank space before " nav-pills". See if that helps

Building a website in Sharepoint, but my control panel disappears

At the moment i'm building a website in sharepoint, but everytime i open the main page of the website in my browser the control panel on the left upperside of the screen is missing. I have no idea why?
To clarify: In this tutorial you can see the browse/page/site control screen, in which they make nearly all the simple changes to the website. https://www.youtube.com/watch?v=dJlwCNXMCBo (edit: Forgot the link of the tutorial)
I literally have no idea why i cant use this, does anyone have any clue?
Edit: My mainpage looks like this:
http://s30.postimg.org/6a5mkzoip/Screenshot_main_page.png
Pull down the menu with the gear icon beside your name. Click on "Show Ribbon".
Your master page is hiding it through javascript.
<script type="text/javascript">
var suitebar = $("#suiteBar");
if(suitebar.length<1)
$("#s4-ribbonrow").css('display','none');
</script>
If you change the master page to $("#s4-ribbonrow").css('display','block');
You should see the ribbon.

Open an html bubble dialog in IE BHO (C++)

Is there a way to open an html menu as a dialog for my IE BHO? I've tried looking over the web for a snippet that hints how to do that but with no clue.
Any ideas?
You could create own dialog with browse control and put desired HTML here. Check codeproject article how to do such dialog.