Hyperlinks not working once uploaded when they are set up in iweb

Hi there
I have spent hours trying to crack this. I have designed my new website in iweb09 and triple checked all my hyperlinks are set up which they are. However, when I upload the site to my FTP via Cyberduck only a few of them work. I have also tried to preview it on a PC where more seem to work.
How can I resolve this problem its driving me crazy. I'd appreciate any advice you lot have on this.
My site address is www.sevendaysdesign.co.uk you will see its currently sitting like one flat image but some of these links on the home page have worked on previous uploads but I have never got them all working.
Thanks
Nikki
Message was edited by: sevendaysdesign

An iWeb page has 4 layers :
1. A Navigation layer
2. A Header layer
3. A Body layer
4. A Footer layer.
The names tell you what their purpose is.
The layers have z-index numbers.
I don't know how you managed it, but it appears that all your content is in the nav-layer.
And the Body layer is blocking the top part.
The Footer layer, which is below the Body-layer, covers the bottom part of the nav-layer.
Do Command-Shift-L to see it.
Put content where it belongs. And make sure nothing covers other content.

Similar Messages

  • Default mail client does not automatically download attachments when they are over 130Kb

    Hi @ll,
    default mail client on Ipad does not automatically download attachments when they are over 130Kb
    Do you know if is possible to change this setting?

    We have this problem as well. Unfortunately after years of only supporting IE and finally rewriting our site to be standards compliant we are going to have to force users back to IE because of this issue. It's not feasible for us to walk users through changing the default viewer. The default should stay Adobe (if installed) until a more robust native version is available. I understand you want to promote free and open tools but if they don't work, it's just not good enough.

  • Can not access email addresses when they are a link. F/F goes nuts and "untitleed " keep flashing across the top of the screen.I have to get out of that page fast or manually shut down thwe computer.

    Can not access email addresses when they are a link. F/F goes nuts and "untitled " keep flashing across the top of the screen.I have to get out of that page fast or manually shut down the computer

    Use the trackpad to scroll, thats what it was designed for. The scroll bars automatically disappear when not being used and will appear if you scroll up or down using the trackpad.
    This is a user-to-user forum and most people will post on here if they have problems. You very rarely get people posting to say there update went smooth. The fact is the vast majority of Mountain Lion users will not be experiencing any major problems with the OS, or maybe with apps which are not compatible, but thats hardly Apple's fault if developers don't update their apps.

  • Some web sites not working in FF but they are OK in Safari.

    A couple of times lately I have had web sites not work correctly with Firefox. I need to switch to Safari to complete the tasks I needed to do. My FF is running on Mountain Lion and is up to date.
    Thanks,
    MJT

    Hello michaeljt, the sites you have problem, is it with a lot of flash content ?
    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Please reload the webpage while bypassing the cache using '''one''' of the following steps:
    *Hold down the ''Shift'' key and click the ''Reload'' button with the left mouse key.
    OR
    *Press ''Ctrl'' + ''F5'' or ''Ctrl'' + ''Shift'' + ''R'' (Windows and Linux)
    *Press ''Command'' + ''Shift'' + ''R'' (Mac)
    See if this helps solve the issues you had and please report back to us!
    thank you

  • Trying to get an album to not identify as seperate when they are the same.

    Hi,
    I know there is a way to do this, but I can't remeber and everything I have found has not worked or deleted the artist and album artwork. I just want my itunes to be more organized. It doesn't seem like there was a reason for it to split like that and I was just wondering if anyone could help me out. I need like step by step instructions because I am pretty confused as to why its not working. I have already tried the get info option and I tried to change the compilations settings, but with the new itunes update I can't seem to find it. Help me please.

    Further, i had a table defined in both db, same columns different column lenght :
    CREATE TABLE CDB_R_FIRMS_ADDRESSES
    INT_FIRM_ID INTEGER NOT NULL,
    ADDRESS_UUID VARCHAR2*(50 CHAR)* NOT NULL,
    ADDRESS_TYPE INTEGER NOT NULL
    CREATE TABLE CDB_R_FIRMS_ADDRESSES
    INT_FIRM_ID NUMBER NOT NULL,
    ADDRESS_UUID VARCHAR2*(200 BYTE)* NOT NULL,
    ADDRESS_TYPE NUMBER NOT NULL
    .. and 'diff' failed to spot the difference! If 'diff' does not consider '50 char' different to '200 byte', what does it consider a difference ?Am i not using 'diff' as it was intended ?

  • Movie not working once uploaded

    Hello
    I've created a couple of little flash movies (for the first time) showing figures merging into one another. I imported the movies into Dreamweaver and when I tested them in my browser, they worked fine.
    However, now that I've uploaded all the pages/files for my client to look at, the movies don't work. Infact in one case it doesn't even appear.
    Can anyone help?
    Here are the links...
    http://www.applebybowers.com/for_web/regulation.html
    http://www.applebybowers.com/for_web/classic.html

    no swf embedding code is in your 2nd link so you wouldn't expect a swf to be present.
    i don't see a problem with the 1st link.

  • Temporary tables are not working in MSSQL as they are in Mysql

    Hi,
    I have migrated DB from mysql from MS-SQL Server. I have used temporary tables in the query.
    I am creating a temporary table at runtime and using them in successive queries for joins.
    Following is the syntax.
    <small></small>
    if object_id('tempdb..##tbl_temp_csuid') is not null
    BEGIN
    DROP TABLE ##tbl_temp_csuid
    END;
    SELECT DISTINCT u2.csuid,u2.firstname INTO ##tbl_temp_csuid
    FROM users u2
    INNER JOIN users_cache uc on uc.id = u2.id
    INNER JOIN users u1 on uc.ownerid = u1.id
    This is working but not getting dropped when session is completed.
    I have tried by adding # to the table name, but in that way it is lost for the next query..
    Is there any solution for this..?
    I want temporary table to persist for php session.
     Thanks in advance for any help..!
    <small></small>
    <small></small>

    Ideally, you want the session from where you query your temptable be the same as the session that created the table table. If you achieve that, then local #temptables will work for you. Since you are saying that the temp table isn't available when you query
    it, then obviously this is a different session. This is where I would start. Perhaps there's a setting in your programming environment to keep sessions from when you created the temp table and when you query it.
    A global ##temptable will be destroyed when the creating session is terminated (or when a session is being put into a connection pool, using sp_reset_connection, I believe). So if you aren't seeing global temptables being destroyed, then again you need to
    troubleshoot the session handling from your programming environment.
    Tibor Karaszi, SQL Server MVP |
    web | blog

  • HT4743 why are TV series not available on Itunes when they are over 2 years old and are available with Netfox & Lovefilms, E,G The Americans series 1 but not 2 or 3, Revenge series 1 & 2 but not 3. can anyone help were I can download them please

    Itunes is not up to date with these series, Revenge series 3 and The Americans 2 & 3, can anyone help were I can stream this to my Mac or ITV please

    It is up to the content owner as to when, and if, specific content is available on itunes (or any outlet for that matter). Very often a network or production compnat willhave exclusive deals with streaming outlets for a period of time before a seaon of a series is available elsewhere.
    I can't speak to most of the shows you reference, but in the case of The Americans, there has only been one season so far. Season two isn't schedule for broadcast until February of next year.

  • '3' not working in calculator when language is set...

    Hello all,
    I have a really wired Problem with my C3-00 bought yesterday. It is not possible to enter a "3" into the calculator when the phone language is set to 'german'. Any other language is fine, but no way in german.
    Does anybody have a clue how to solve this odd problem?
    Thank you!
    Barbara

    Another thing I've found out is that along with Standard PS/2 Keyboard I have installed HID Keyboard Device.
    Can it be somehow related to my issue?
    Hi,
    How about on the system without this issue? Do you have HID Keyboard Device installed on it too?
    You can try to install the HID Keyboard Device on the system with no issue, then check if the problem will start to occur. If the issue occurs after the installation of the device, the issue is probably caused by a conflict caused by the device.
    Regards,
    Melon Chen
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • SharePoint Service Accounts - Passwords have expiration date when they are set to never expire

    The managed accounts in my farm all have the Enable automatic password change
    unchecked.  Also these same accounts in AD have the Password never expires
    checked. 
    If I use get-spmanagedaccount to view the accounts, some passwords show as already expired or have a future expiration date.  The automatic change is set to False and nothing is listed under the Change Schedule. 
    The strange thing to me is that the passwords listed as expired are still valid and haven't been changed.  I even ran an iisreset just to check and there were no issues.  When I look in CA the next password change area is blank for all accounts.
    My question is why do the accounts list a password expiration date if it's set to
    not automatically change passwords.  If you do change the password through AD you will see a new expiration date set for 90 days later.  I'm just wondering how much I should worry about the service accounts that are listed
    as having expired passwords even though the passwords aren't expired.  My sites and services are running but I'm just curious if this could potentially cause other errors.
    Thoughts?  Prayers?  Condolences?
    Jennifer Knight (MCITP, MCPD)

    I checked the My farm as well, you are correct. Even you did not select the automatic password change still it showed 90 days as expiry. 
    You don't need to worry about it, it will not hurt, one of the dev farm having account which  expired almost 10 months ago. :)
    you can double check with in central admin and you will see no expiration set over their.
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • How to fix keyboard clicks and lock sounds when they are on in setting , sounds and still do not work?

    How to fix keyboard clicks and lock sounds when they are on in setting , sounds and still do not work?

    Double-click the Home button and swipe the Task Bar to the right. Check Volume and Mute Settings.
    Message was edited by: Diavonex

  • Some websites keep asking to enable cookies in my browser when they are and I can't get this sites to see that, they worked fine yesturday but not now, any help

    Some websites keep asking to enable cookies in my browser when they are and I can't get this sites to see that, they worked fine yesterday but not now. I've restarted the browser, restarted the computer, disabled then enabled cookies in the privacy settings and still nothing. Any help?

    Hi,
    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!

  • Flash hyperlinks not working when hosted

    Hey all.  I've recently run into an issue with Adobe Flash Professional using Actionscript3 to navigate to separate pages on my personal webpage.  I believe I have the coding correct because when I open it locally in my browser, the links all work perfectly fine and navigate to the appropriate location on my hosting service.  However, when I uploaded the files to my file manager, the links suddenly stopped working...
    The link I am currently trying to get to work completely is the web design page.
    Here is the code for what I have and a link to the webpage.  Webpage link:  Justin Widener - Projects
    <div id="main-content">
          <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="800" height="450" allowScriptAccess="always">
            <param name="movie" value="http://justinwidener.x10.mx/assets/projectsani.swf" />
            <param name="quality" value="high" />
            <param name="wmode" value="opaque" />
            <param name="swfversion" value="11.0.0.0" />
            <param name="allowScriptAccess" value="always">
            <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
            <param name="expressinstall" value="Scripts/expressInstall.swf" />
            <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
            <!--[if !IE]>-->
            <object type="application/x-shockwave-flash" data="assets/projectsani.swf" width="800" height="450" allowScriptAccess="always">
              <!--<![endif]-->
              <param name="quality" value="high" />
              <param name="wmode" value="opaque" />
              <param name="swfversion" value="11.0.0.0" />
              <param name="expressinstall" value="Scripts/expressInstall.swf" />
              <param name="allowScriptAccess" value="always">
              <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
              <div>
                <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
                <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
              </div>
              <!--[if !IE]>-->
            </object>
            <!--<![endif]-->
          </object>
      </div>
    Here is a copy of the Actionscript coding that I am using with my SWF file.
    photo.addEventListener(MouseEvent.CLICK, fl_ClickToGoToWebPage_5);
    function fl_ClickToGoToWebPage_5(event:MouseEvent):void
      navigateToURL(new URLRequest("http://justinwidener.x10.mx/photo.html"), "_blank");
    web.addEventListener(MouseEvent.CLICK, fl_ClickToGoToWebPage_6);
    function fl_ClickToGoToWebPage_6(event:MouseEvent):void
      navigateToURL(new URLRequest("http://justinwidener.x10.mx/web.html"), "_blank");
    model.addEventListener(MouseEvent.CLICK, fl_ClickToGoToWebPage_7);
    function fl_ClickToGoToWebPage_7(event:MouseEvent):void
      navigateToURL(new URLRequest("http://justinwidener.x10.mx/model.html"), "_blank");
    video.addEventListener(MouseEvent.CLICK, fl_ClickToGoToWebPage_8);
    function fl_ClickToGoToWebPage_8(event:MouseEvent):void
      navigateToURL(new URLRequest("http://justinwidener.x10.mx/video.html"), "_blank");
    All of the links work correctly when I open the files locally but stop working when they are hosted.  Is there a reason for this?

    I'm not sure if I can even use a "www" prefix on those links.  They are a free hosting service and the "www" prefix is replaced by "justinwidener".  I can give it a shot and see what happens if I add "www" to the beginning.
    UPDATE:  So I have added the "www" prefix to the links and they are still not working.  However, the links work on IE on my computer and on Google Chrome on a different computer.

  • I'm on a windows laptop using iTunes sharing through the family to connect with Apple TV. After choosing the folder of photos to be shared and displayed on the appletv and when I choose to show on screen, they are not shown in the order they are in the or

    I'm on a windows laptop using iTunes sharing through the family to connect with Apple TV.
    After choosing the folder of photos to be shared and displayed on the appletv and when I choose to show on screen, they are not shown in the order they are in the original folder.
    How to pair show in a certain order, for example, sorted by name.
    grateful
    Julio Cesar

    Not that I'm aware of. You just export JPEG copies to a folder that you can point iTunes to. For instance, I have created a folder in my Pictures folder called Apple TV. And within that folder I have other folders of pictures that I can choose from in iTunes to share with Apple TV. But there doesn't seem to be any way to share a Lightroom slideshow. If you have laid to create a video file that would probably work. Apple TV is a little clunky in my opinion. Some things are a little more difficult to do now than they were a while back. I probably haven't provided you with much help, but just keep experimenting and I think you will figure it out.

  • Hyperlinks in presentation not working once published - Presenter 7.0.7

    I have a link to an intranet address that will not work once the PowerPoint presentation has been published via Presenter 7.0.7.  The cursor does not change to a pointer and nothing launches when the link is clicked.  I have verified the Flash Player security settings as well as ensured no formatting of the text link except for the color change that happens when the link is inserted.
    The issue (slide 37) can be viewed at:  http://www.pivotpointelearning.com/docs/TTE7161/index.htm
    Any ideas?
    Ray

    Hi Ray,
    Thanks for sharing the presentation.
    Textbox in which your hyperlink is placed have text containing Text effects. When you publish the presentation then any text with text effect is published as an image.
    So, place text with a hyperlink in a separate textbox which don't have any text effects. Segregate the content having text effect and hyperlink in 2 separate textbox.
    Thanks,
    Shubhi

Maybe you are looking for

  • Accessing iTunes in the cloud

    What does "Accessing iTunes in the Cloud" icon just to the right of Music menu item mean. It's animate with scrolling diagonal stripes.

  • How to turn off monitor?

    Hii! Is it possible to turn monitor state into standby mode in Java? Thx.

  • Average HTTP response time going up week by week as said by SAP

    Hello All, I was looking into our SRM earlywatch report,SRM is on windows SQL server 2005 with Windows 2003 server In the performance indicators,there is an interseting trend though nothing is in yellow or red The values of following parameters : ave

  • HT4796 Trouble with music transfer with Migration Assistant...

    i used migration assistant to transfer my music from my old pc to my new macbook pro last night.  After 8 hours the message came back saying the transfer was successful but I can't find any music on my mac.  Where is it?

  • Is Mt. Lion compatible with Final Cut Pro 7?

    I am currently running Lion (10.7.5) on a 27" iMac 3.4 Ghz. Is Mt. Lion compatible with Final Cut Pro 7 and FCS 3? Will these programs still run or will they be not supported by the new OS as has been the case with past apps when a new OS is introduc