nav

SQL Server 2005 - SQL Statement to remove clustered keys from tables based on a query on tablenames?

I am trying to restore a backup of a Microsoft Dynamics NAV database, which unfortunately fails as it tries to set a CLUSTERED KEY for the tables which already have clustered keys. In NAV, every company in the database gets its own copy of the tables, prefixed with the Company's name, e.g. COMPANY$User_Setup. I'd therefore like to remov...

Superfish dropdown issues

Here is my dilemma: I'm attempting to make my nav work for the site mobilityidaho.org. On the home page, there are no problems at all with superfish working properly. When you navigate to any other page, the CMS I am using launches a javascript file that attaches the class "selected" to the li's in my navigation. Superfish cannot handle ...

Navigation bar moves for no apparent reason

I was playing around with a website mostly for my learning purposes and on just one of my pages (the 'resume' page) the navigation bar is shifted about 5 pixels to the left than all the other pages. I see no reason why it shouldn't be exactly the same as the others. Does anyone have any idea why? www.the4amburrito.com ...

Multiple Jquery Cycle Slideshows with their own Navs

Hello, I am using the Jquery cycle plugin (http://malsup.com/jquery/cycle/) on a blog listing page. There are multiple slideshows which work fine but I'd like each on the have their own previous and next. Because these are blog posts it is difficult to sign unique IDs or classes. I currently have:- $('.article .gallery').cycle({...

PHP Switch Nav system - how can i set it up to use 2 GET variables

I use a the following PHP switch for my navigation menu: <?php include("header.php"); if (! isset($_GET['page'])) { include('./home.php'); } else { $page = $_GET['page']; switch($page) { case 'about': include('./about.php'); break; ...

Dynamic Flash Navigation Menu

I am trying to create a Dynamic flash Navigation Menu which will disable the button of the page you are on leaving the button in the "hit" state and then active it once you have called for a new page and deactivate the new button. I know this can be done with movie clips and some old school gotoAndPlay/Stop slight of hand but I would li...

Cycle id from #nav links

i want to know the id names from links inside #nav div, i try to find what id have , but i dont find nothing about this. ...

Parsing a dynamic enumeration

We are using a Microsoft ERP which dynamically exposes web services. The services generated by the service is out of our control. We have no say so in how the objects, including the type definitions, are created and exposed. When a new method is added or removed from the web service, all of the type enumerations are renumbered and ever...

back buton is not allowing to add nav bar image for IPHONE

i am not able to put my nav bar image properly as back button is making problem this is my code UIImage *image = [UIImage imageNamed: @"enjoynavbar.png"]; UIImageView *imageView = [[UIImageView alloc] initWithImage: image]; self.navigationItem.titleView = imageView; // UIBarButtonItem* btBack = [[UIBarButtonItem alloc] initWithTi...

PHP recursive function, to create site navigation as nested list, but without unnecessary menu items.

I really dig the idea of using a recursice function to build my site menus but I am having a problem and have been banging my head for ages now. I need my menu function to return a nested list but I dont want non-active irelevent elements of the tree to be displayed. Details. I have a MySql database with a table called menu_items that s...

How could I set a div's position based on the screen using Jquery scrollto

I am using Jquery's Scrollto plugin to scroll up and down based on a menu but I would like the menu to stay with the scroller. So if I had a page that was 4000px high and someone clicks the link that takes them down to the 2000px point the menu would slide down there too. Not sure if this is a css or jquery issue. Any help is very app...

How can I make a horizontal nav menu that on hover reveals the sub menu items and slides up above the main nav using jquery?

I want it to slide up from the bottom right about my main nav menu just like this site. jefflewisdesign.com I know that site is down in flash but I know that nav can be done in jquery. thanks. Here is how I have it so far. <div id="slidebottom" class="slide"> <h2>Item</h2> <div class="inner"></div> </div> $(documen...

Html5 <nav> tag use

Can we use <nav> tag with the rest of <header> tag in HTML 5? ...