http://kenbrook.org
You'll see the main nav has a subnav with elements floated left (I think*), but when you hover over a main nav item, then try to get to the sub-nav items, they disappear before you can click them! I can't quite figure out why this is.
*I designed the site, and another developer built it, but left to project early s...
I'm trying to make a landscape app that uses navigation controller, but I can't get the app to launch in lanscape mode. Once I'm in another view and I use [self.navigation popToRootViewControllerAnimated:YES]; then the root view is in landscape. Why isn't it in landscape from the launch of the app.
I've already put it in landscape mod...
I have implemented the A* Algorithm According to Wikipedia's implementation at here
However, it is too slow to run in mobile devices. I have to wait endless hours to finish the function though it runs fine on desktop computer. Is there anything I can do to optimize the algorithm?
Here's the actual code
public DriveRoute findroute(rout...
Hi!
I am looking for good Visual Studio 6 Addins for code navigation and exploring.
For instance, I want to have the functionality of showing in- and outcoming calls of methods like Resharper already has.
Furthermore I am looking for a simpler code navigation.
Do you have any suggestions?
...
Hello,
I would like to have a vertical navigation menu compatibbel with jQuery UI ThemeRoller.
How can I define the styles for my menu?
I just build menus dynamically and php code is following:
$menu = '<ul>';
foreach ($items as $val) {
if ( 'sep' == $val['link'] )
$menu.=$val['label'].'<br>';
else {
// echo $_SER...
I'm experimenting with making horizontal navigation bars. The links are white text within black backgrounds that run together to make it a continuous bar. The width of the bar is defined by setting the width of the elements in the css a{width:number;}. How do I make it so that the bar automatically adjusts to fill the width of the wi...
Scenario: building a site where navigation will be in master page in either left or top menu. What are the advantages to using the ASP.NET navigation system based on web.sitemap files? The alternative I'm considering is just building the links in <li> elements as necessary.
...
Hi all,
I'm developing a new application that use a webView for internet searches...
I'd like to reproduce the navigation bar as Safari's bar but I don't know how do.
How can I create a navigation bar with label and two text fields programmatically?
Does anyone know a tutorial, link or guide to do this?
Thanks!
...
I would like the user to be sent to the category landing page when the user clicks the category in layered navigation.
So instead of the user getting /category.html?cat=11, they would get /category/RedWidget.html?cat=11 when they click the RedWidget category.
I found this link, but his code doesn't work.
Thanks ahead of time!
...
Hi,
I would like to have the following layout
+++++++++++++++++++++++
+Header +
+++++++++++++++++++++++
+Nav+ +
+ + +
+ + +
+ + Content +
+ + +
+++++++++++++++++++++++
so basically a two column layout with a header. I've checked many CSS la...
I am using an inline-block list as a horizontal navigation bar with drop down menus. But I can't seem to get it to fill up the entire width of the screen. To make it more frustraiting, when I change the zoom level of the browser screen, the list resizes at a different rate from everything else. Thus, on some zooms it is too long and wrap...
<div id="wrapper" class="hfeed">
<div id="access">
<div id="menu">
<ul>
<li class="page_item page-item-2"><a title="About" href="/?page_id=2">About</a></li>
<li class="page_item page-item-20"><a title="Support" href="/?page_id=20">Support</a></li>
<li class="page_item page-item-22"><a title="Links" href="/?page_...
Hi all,
I am making an coredata application in which I was instructed to make a tableview (filling form) with textfield in each row which I did successfully. Then I made a toolbar with previous and next button and add to textField's inputAccsoryView for navigating between the textfields of each cell. One textfield per row . I am also ab...
In the documentation it says that it gets an approximate location and then keeps updating with finer and finer precision. I have a button that does
[locManager startUpdatingLocation];
and then I implement
- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)o...
Hey everyone... thanks for taking the time to read this.
I have a JavaScript (jQuery) navigation bar on my main page that is simply "included" on my page. For example, I have index.shtml that "includes" the nav bar, which is "nav_bar.shtml". And this is the same for every other page. Now clearly, with the current setup, there's no wa...
Hello! I'm trying to add some keyboard support for a website I'm working on and I found these plugins for jQuery: shortKeys and jquery.hotkeys (can't post link because i'm a new user). The thing is I want to make it so that when a user presses "j", for example, to go to a different page, "about.html", for example, but, I don't know how t...
Hey.
My WPF application is becoming a real pain. I have created a Window and would like to load another page when I click on a button. I assumed this would be straightforward, but it doesn't seem to be. I manage to load the other page by using this.content = new UserPage(). However, from this UserPage, I can't get back to my main windo...
Hello,
I am trying to replicate Apple's navigational menu bar they use for their primary navigation on their apple.com website, using only HTML, CSS and one image here, and I have some problems.
I can't seem to figure out why my navigational menu bar isn't showing up!
The link is here:
http://www.marioplanet.com
If you do not wish to...
Hello,
I use MVC2/asp.net and try to develope something like a wizard. This wizard will have serveral websites.
The user will be able to enter some information on website A and to navigate then to
website B (by pressing a button which triggers the Http.Post event).
No problem up to this point.
Also on website B can the user enter some ...
Hi all
I am working on a web crawler. I am using the Webbrowser control for this purpose. I have got the list of urls stored in database and I want to traverse all those URLs one by one and parse the HTML.
I used the following logic
foreach (string href in hrefs)
{
webBrowser1.Url = new Uri(hre...