How do you Add a Link in Nav. Bar to a different site?

I would like to add a link to the Nav Bar that goes to a location of my choice. Is that possible in iWeb? If So, how?
Thanks
Neil

Here's a way to do it:
1 - create a blank page with the name you want to appear in the navbar.
2 - publish the site.
3 - edit the html file of the page and put the following in the head section of the file:
<meta http-equiv="REFRESH" content="0;url=http://www.the-domain-you-want-to-redirect-to.com">.
Replace the “0” with the number of seconds you would like to pass before the redirection takes place. Put in the URL of your destination site.
As long as you never make any more changes to that page or use the Publish All to MobileMe option you won't have to reedit the html file and add the code all over again. This is a demo of that feature with an 8 second lag.
Now the external page will be in your navbar.
OT

Similar Messages

  • How do you add a link to another website in you PDF using LiveCycle?

    Can you add a link in your PDF in livecycle that opens a new window that that takes you to a predetermined website?

    There may be simpler ways, but this is how I made my button.
    Add the button.On the Object palette>Field page change appearnce of button to have no outline and no fill. Highlight the text and on the Font and paragraph palettes choose the correct look for your text (blue and underlined plus anything else you want) and change the text to what you want the link to say.
    Then to add the URL, open your script editor (Window>Script editor) & choose "Langauge:Javascript" and "Run at:Client".
    With the button chosen, choose the CLICK event (from drop down list, beside "Show") add the script:
    app.launchURL("http://AND THIS IS WHERE YOU ADD YOUR OWN URL")
    Hope that is helpful

  • How do you add a link to an image item

    I have added an Image Item to a page and want to be able to add a link to that image but dont see any where you can put the link in the Image Item properties

    One easy way to do this would be to add an image page, upload your image to the page, then create an html portlet with the appropriate tags to refer to the image and your link.

  • Can and how do you add a link to Facebook, Linkledin, etc

    Would like to add a links to various website, facebook, Linkedin, youtube, etc to my website.
    I see them on others sites with their Icons as the link. Can Iweb do that and if so how?

    Go here for Facebook or Twitter logo. Control click to download.
    Drag it onto your page and select it as a hyperlink to the appropriate page.
    For facebook like, comment and live stream, see this page...
    http://www.iwebformusicians.com/Search-Engine-Optimization/Facebook-Button.html

  • How do you add a link to a .swf file?

    Is there a way to add a link/URL to a .swf file, without embedding into the original .fla file?
    Is there any way to do that with just the .swf file alone, and without actually editing the .fla or re-creating it?

    I won't be providing lessons, but here's the basics...  to load the other swf file using AS3 you will use code like the following in the main timeline...
    var my_loader:Loader = new Loader();
    my_loader.load(new URLRequest("theOther.swf"));
    addChild(my_loader);
    addChild(myBtn); // described next but coded here
    To add a link, you can create an invisible button and place whereever you like in the timeline, or if its a text link you can assign the link to the dynamic textfield via the properties panel.  To create an invisible button just create a button symbol and draw a shape for it only in its Hit frame, leaving all other empty... that way you can still see the button to work with it on the stage, but it will be invisible when the file plays.  You could also have the button include text or any other visual you desire if you don't need/want it to be invisible.
    If you use the button approach, then you need to assign the button an instance name (I use "myBtn" for this example)  Then you have to assign an event listener and event handler function for the button...
    myBtn.addEventListener(MouseEvent.CLICK, clickBtn);
    function clickBtn(evt:MouseEvent):void {
         navigateToURL(new URLRequest("http://www.yourlinksurl.com/etc"));
    The reason I addChild for myBtn after I addChild the Loader is so that it will sit above the Loader.  Without that line, the Loader would have the loaded swf sitting atop the button blocking access to it.
    If you plan to use a Textfield instead of a button, then you don't need the event code but you still need the addChild() line to bring it in front.  As mentioned already you can link it via the properties panel field for a link.  To make life simple per these instructions just assign the textfield an instance name of myBtn.

  • How do you add multiple links to a rollover image?

    Hi guys,
    I'm pretty much a novice when it come to DW, but i understand some things and can get by with a simple website(i only use design mode).
    Anyways, i understand how to use rollovers if its a basic image over image swap. My issue is, I have a link that says "T-shirts" and what i want is when you roll the mouse over that text, it swaps to another text -"1 or 2". Now on the "1 or 2" image, i want to have 2 seperate links on them.  I tried using hotspots but to no avail. Everytime, the "1 or2" text comes out as a single link. Is doing this possible? I'm using CS4 if that helps btw.
    Thanks!!

    I think you're trying to make something that is more complicated than it needs to be... First, as far as I know there is no easy way to accomplish what you're trying to do with a single image...
    The first option would be to split your initial image in half, and create a rollover effect on the left half on rollover with the specified link 1, and add a second rollover effect on the right side image so that it also changes. Do the same with the right half image - create the rollover effect along with the link for that image only, then add a rollover script that affects the left side image (I've attached a very basic sample to demonstrate in the zip folder - note that there are two rollover images - each with a separate web link, and each has a rollover effect that affects both buttons...)
    Second option is perhaps using a "Dropdown" menu that (on rollover) shows two more links... there are many ways this can be accomplished - the easiest (in my opinion) is by using the "spry menu bar". Once created, you can adjust the colors, fonts etc., and an image could be replaced on the initial link within the css... (my website is still under construction, but hopefully will show what I mean: http://www.jgigandet.com/) If you google "drop-down menu html, you'll find several other alternatives  to spry as well...
    Hope that helps...
    Jesse

  • How do you add portable links to the Custom Landing Page

    I have customized the PS2 Landing Page. This will be deployed to multiple environments. I need the url links on the page to be portable and point to a location on the server it is running on. (ex. anyHost.oracle.com/xyz where anyHost will be the server this is running on).
    I've tried using EL in the goLink : destination="http://#{facesContext.externalContext.request.serverName}/xyz"
    and also:
    goLink: destination="http://#{landingBean.host}.oracle.com/xyz"
    where the code is:
    package custom.webcenter.spaces;
    import javax.faces.context.FacesContext;
    import javax.servlet.http.Cookie;
    import javax.servlet.http.HttpServletRequest;
    public class landingBean {
    public landingBean() {
    public String getHost() {
    FacesContext context = FacesContext.getCurrentInstance();
    HttpServletRequest req = (HttpServletRequest)context.getExternalContext().getRequest();
    String host = req.getServerName();
    if (host.equalsIgnoreCase("127.0.0.1")) {//If running this from the laptop, return abcde
    return "abcde";
    else { //split the hostname and return the first part
    return host.substring(0, 6);
    These did not work and caused the page to not display at all.
    Please let me know if you have any suggestions.
    Thank you!

    I tried this:
    <af:outputText value="http://#{facesContext.externalContext.request.serverName}:#{facesContext.externalContext.request.serverPort}/" />When i run this, it shows:
    http://localhost:7101/
    I believe this is whay you need.

  • How do you add a percentage in the preloader?

    How do you add text that changes on the preloader as your site loads? for example a standard "0%" ... "100%" or even controll what frame a gif image displays?
    Thanks

    It is not easy to see and I found it by messing around. First of all put them in daye order by dragging the screen down and touching the little alarm clock at the top.  Then touch the space below the earlies reminder and a new one comes up. It defaults to 'today' so you have to touch the new reminder and then touch the 'i' button that appears. You can then change the date and time etc. No easy.
    I dont understand why Apple do these thongs before updating the user guide!
    Hope this helps.

  • How do you add and remove links to websites in folders on Safari?

    How do you add and remove links to websites in folders on Safari?

    For clarification, works like a bookmark of website only it is listed in toolbar with "Most Visited", "Latest Headlines", "News", and "Popular".  I have done it before but can't find it for the life of me.
    Thanks!

  • Just uploaded iso7 , . . .hate it!  Can you change background colours?  How do you add a new item/activity to the schedule? In notes the font has changed, can I change it back and the link colour is now yellow instead of blue, can I change it?  Thanks

    Just uploaded iso7 , . . .hate it!  Can you change background colours?  How do you add a new item/activity to the schedule? In notes the font has changed, can I change it back and the link colour is now yellow instead of blue, can I change it?  Yellow on white is harder to read. Thanks

    Another question. How do you bookmark something.  It was so easy before, why did they change it?  Can I uninstall it?

  • How do you add a Facebook, Twitter and Yelp links?

    How do you add links for Facebook, Twitter and Yelp onto a website created by using iWeb? I'm using a hosting service to get my site on the web.

    Hi 80smetalhead. My first help post, so hope it helps.
    First off choose wether you are using a icon or text.
    For a few free Facebook/twitter/in icons try: http://www.jordankennedy.com/jk/Free_Stuff.html
    Ether way the process is the same. Select the Text/iCon. Then go to "Inspector" in the bottom right hand. (Blue circle with a "i" in it)
    Then select the sixth iCon across. (blue circle with arrow)
    Click "Enable as Hyperlink"
    Then under that Link to: External Page <--this should be selected.. If not select it.
    Under that will be a box with a link already in there. usually a apple link. change that to your Facebook/Twitter address.
    And that hopefully should do the trick

  • How Do You Add Multiple CSS Rules to Text?

    Hi everyone, I have these css rules in my css styles window they are all assigned to some text in a cell on my page.
    .Def14grey4 <body>
    .def14grey4 a:link <a>
    .def14grey4 a:visited <a>
    .def14grey4 a:hover <a>
    .def14grey4 a:active <a>
    .def14grey4 a:focus <a>
    How do you add (all of) these styles to the text in the first place, I know how to add the first one (.Def14grey4), you select the text in the cell and choose the rule from the drop-down menu in the css panel, but how do you add the other ones to some text as well, so that it can have the same link properties.
    Basically I have some more text elsewhere on the page and want to assign these rules to that as well.
    thanks Gareth

    You would want to change your order as shown here -
    .Def14grey4 <body>
    .def14grey4 a:link <a>
    .def14grey4 a:visited <a>
    .def14grey4 a:hover, .def14grey4 a:focus <a>
    .def14grey4 a:active <a>
    That way, the hover and the focus states are equivalent.
    How do you add (all of) these styles to the text in the first place, I know how to add the first one
    You don't really.  The 4 bottom selectors say -
    "find an element with a class of 'def14grey4', and style any link inside that element this way"
    So, <span class="def14grey4"><a href="whatever.html">Whatever</a></span> would get the pseudo-class styles, as would any of the following -
    <span class="def14grey4"><a href="whatever.html">Whatever</a></span>
    <td class="def14grey4"><a href="whatever.html">Whatever</a></td>
    <p class="def14grey4"><a href="whatever.html">Whatever</a></p>
    <body class="def14grey4"><a href="whatever.html">Whatever</a></body>
    <div class="def14grey4"><a href="whatever.html">Whatever</a></div>
    <strong class="def14grey4"><a href="whatever.html">Whatever</a></strong>
    and so on.  These examples assume that there isn't some other more specific rule that would apply to the same links.  You need to study up on the CSS cascade and specificity....

  • I designed my social media buttons. How do I add the link to each one. For example: How do I add my Facebook link to my face book button on my muse site?

    I designed my social media buttons. How do I add the link to each one. For example: How do I add my Facebook link to my facebook button on my muse site?

    Hello,
    Please select the button that you have created and go to hyperlink tab and add the facebook page URL there.
    Please take a look at the screenshot below.
    Regards
    Vivek

  • How do you create a link to a pdf in Muse? Thought it was going to show that with Katie's menu and can"t find in any of the tutorials.

    How do you create a link to a pdf in Muse? Thought it was going to show that with Katie's menu and can't find in any of the tutorials.

    The steps would be :
    - Add files from file menu > select pdf > add to site
    - Select the content (rectangle,text etc) and click on hyperlink dropdown > it should show you the added files list
    - Select the file you want to link
    Thanks,
    Sanjit

  • How do you add an iTunes Gift Card & how is it charged?

    Hey all,
    I currently pay for my iTunes downloads direct from my Debit Card. If I add a gift card to my account will the cost of downloads come from that automatically or do I need to let iTunes know thats what I want?
    Also - how do you add the card? I'm probably being totally stupid but can't seem to find an "add credit here" option.
    Help appreciated

    If you redeem an iTunes gift card, the next purchases you make up to the value of the gift card will be made from it automatically. To add the card, click here; this link will open iTunes.
    (34512)

Maybe you are looking for

  • Query disable status in bex query designer

    hi all, when i opened query in query designer for PA_PA cube it is in disabled mode.iam unabled to restrict or do any changes.and giving error like "the dependent objects are in different transport orders."i installed this particular queries in BI co

  • WINDOWS GALLERY FOLDERS

    HI CAN SOMEONE HELP PLS  I have photos in a folder on  external passport when I try to open one of the folders to edit photo on laptop gallery is not finding folder yet when I plug into my pc gallery will find it . why wont it find it on my laptop

  • Opening IPhoto Library in Photoshop 4.0

    I am having problems accessing the IPhoto Library through Photoshop 4.0. Before I upgraded my IPhoto the library was considered an ordinary folder but now it is "greyed" out. It seems I can only access my pictures through IPhoto itself. What should I

  • Large number of small order

    Hi All, How the   process  "splitting a large purchase order  into smaller order based on certain criteria and processed together such that one order block ,blocks all the order" handled efficiently in SAP Would appreciate your inputs on the above. T

  • JavaRMI example is good betwen windows but dont work under linux

    Hello all, this is my first post here, Im from mexico, then, my english is not good, but i will try to explain my problem and I hope you undertand. Well, first all, Im using ubuntu 8.04 and version of JDK: java-6-sun-1.6.0.10. I have this code on the