Hyperlinks are not active online after publishing??

For some reason, the hyperlinks don't all function on the website after publishing.  It does not seem to be consistant - not a problem with a particular page or all hyperlinks.  When I try to adjust the hyperlink in iWeb, there's no problem with it there - they all function fine in the design.   Any suggestions on how to be sure the hyperlinks work when published to the website?    Thanks!

I don't seem to have a "problem page".  I've read in a few other feeds that there may be a problem with overlapping text boxes.  I'm working on that right now to see if that will resolve the issue.

Similar Messages

  • I have calendar.html file it is working fine in IE & crome but in firefox hyperlinks are not active... anyone can please help me ..

    <pre><nowiki><html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Calendar</title>
    <script language="JavaScript">
    var dDate = new Date();
    var dCurMonth = dDate.getMonth();
    var dCurDayOfMonth = dDate.getDate();
    var dCurYear = dDate.getFullYear();
    var objPrevElement = new Object();
    var objPrevCalDateText = new Object();
    function fToggleColor(myElement) {
    var toggleColor = "#0000ff";
    if (myElement.id == "calDateText") {
    if (myElement.color == toggleColor) {
    if (myElement.innerText == dCurDayOfMonth && frmCalendar.tbSelYear.value == dCurYear && frmCalendar.tbSelMonth.value == dCurMonth+1) {
    myElement.color = "red";
    else {
    myElement.color = "";
    else {
    myElement.color = toggleColor;
    else if (myElement.id == "calCell") {
    for (var i in myElement.children) {
    if (myElement.children[i].id == "calDateText") {
    if (myElement.children[i].color == toggleColor) {
    if (myElement.innerText == dCurDayOfMonth && frmCalendar.tbSelYear.value == dCurYear && frmCalendar.tbSelMonth.value == dCurMonth+1) {
    myElement.children[i].color = "red";
    else {
    myElement.children[i].color = "";
    else {
    myElement.children[i].color = toggleColor;
    function fSetSelectedDay(myElement){
    if (myElement.id == "calCell") {
    if (!isNaN(parseInt(myElement.children["calDateText"].innerText))) {
    myElement.background = "images/cal_cell_down.gif";
    objPrevElement.background = "images/cal_cell_up.gif";
    document.all.calSelectedDate.value = parseInt(myElement.children["calDateText"].innerText);
    objPrevElement = myElement;
    if(frmCalendar.tbSelMonth.value < 10)
    sMonth = "0" + frmCalendar.tbSelMonth.value
    else
    sMonth = frmCalendar.tbSelMonth.value
    if(myElement.children["calDateText"].innerText < 10)
    sDay = "0" + myElement.children["calDateText"].innerText
    else
    sDay = myElement.children["calDateText"].innerText
    window.returnValue = sMonth + sDay + frmCalendar.tbSelYear.value
    window.close();
    function fGetDaysInMonth(iMonth, iYear) {
    var dPrevDate = new Date(iYear, iMonth, 0);
    return dPrevDate.getDate();
    function fBuildCal(iYear, iMonth, iDayStyle) {
    var aMonth = new Array();
    aMonth[0] = new Array(7);
    aMonth[1] = new Array(7);
    aMonth[2] = new Array(7);
    aMonth[3] = new Array(7);
    aMonth[4] = new Array(7);
    aMonth[5] = new Array(7);
    aMonth[6] = new Array(7);
    var dCalDate = new Date(iYear, iMonth-1, 1);
    var iDayOfFirst = dCalDate.getDay();
    var iDaysInMonth = fGetDaysInMonth(iMonth, iYear);
    var iVarDate = 1;
    var i, d, w;
    if (iDayStyle == 2) {
    aMonth[0][0] = "Sunday";
    aMonth[0][1] = "Monday";
    aMonth[0][2] = "Tuesday";
    aMonth[0][3] = "Wednesday";
    aMonth[0][4] = "Thursday";
    aMonth[0][5] = "Friday";
    aMonth[0][6] = "Saturday";
    else if (iDayStyle == 1) {
    aMonth[0][0] = "Sun";
    aMonth[0][1] = "Mon";
    aMonth[0][2] = "Tue";
    aMonth[0][3] = "Wed";
    aMonth[0][4] = "Thu";
    aMonth[0][5] = "Fri";
    aMonth[0][6] = "Sat";
    else {
    aMonth[0][0] = "Su";
    aMonth[0][1] = "Mo";
    aMonth[0][2] = "Tu";
    aMonth[0][3] = "We";
    aMonth[0][4] = "Th";
    aMonth[0][5] = "Fr";
    aMonth[0][6] = "Sa";
    for (d = iDayOfFirst; d < 7; d++) {
    aMonth[1][d] = iVarDate;
    iVarDate++;
    for (w = 2; w < 7; w++) {
    for (d = 0; d < 7; d++) {
    if (iVarDate <= iDaysInMonth) {
    aMonth[w][d] = iVarDate;
    iVarDate++;
    return aMonth;
    function fDrawCal(iYear, iMonth, iCellWidth, iCellHeight, sDateTextSize, sDateTextWeight, iDayStyle) {
    var myMonth;
    myMonth = fBuildCal(iYear, iMonth, iDayStyle);
    document.write("<table border='0' width='280' cellspacing='0' bordercolorlight='#808080' bordercolordark='#808080'>")
    document.write("<tr>");
    document.write("<td align='center' style='FONT-FAMILY:Verdana;FONT-SIZE:12px;FONT-WEIGHT: bold'>" + myMonth[0][0] + "</td>");
    document.write("<td align='center' style='FONT-FAMILY:Verdana;FONT-SIZE:12px;FONT-WEIGHT: bold'>" + myMonth[0][1] + "</td>");
    document.write("<td align='center' style='FONT-FAMILY:Verdana;FONT-SIZE:12px;FONT-WEIGHT: bold'>" + myMonth[0][2] + "</td>");
    document.write("<td align='center' style='FONT-FAMILY:Verdana;FONT-SIZE:12px;FONT-WEIGHT: bold'>" + myMonth[0][3] + "</td>");
    document.write("<td align='center' style='FONT-FAMILY:Verdana;FONT-SIZE:12px;FONT-WEIGHT: bold'>" + myMonth[0][4] + "</td>");
    document.write("<td align='center' style='FONT-FAMILY:Verdana;FONT-SIZE:12px;FONT-WEIGHT: bold'>" + myMonth[0][5] + "</td>");
    document.write("<td align='center' style='FONT-FAMILY:Verdana;FONT-SIZE:12px;FONT-WEIGHT: bold'>" + myMonth[0][6] + "</td>");
    document.write("</tr>");
    for (w = 1; w < 7; w++) {
    document.write("<tr>")
    for (d = 0; d < 7; d++) {
    document.write("<td background='images/cal_cell_up.gif' align='left' valign='top' width='" + iCellWidth + "' height='" + iCellHeight + "' id=calCell style='CURSOR:Hand' onMouseOver='fToggleColor(this)' onMouseOut='fToggleColor(this)' onclick='fSetSelectedDay(this)'>");
    if (!isNaN(myMonth[w][d])) {
    document.write("<font id=calDateText onMouseOver='fToggleColor(this)' style='CURSOR:Hand;FONT-FAMILY:Verdana;FONT-SIZE:" + sDateTextSize + ";FONT-WEIGHT:" + sDateTextWeight + "' onMouseOut='fToggleColor(this)' onclick='fSetSelectedDay(this)'>" + myMonth[w][d] + "</font>");
    else {
    document.write("<font id=calDateText onMouseOver='fToggleColor(this)' style='CURSOR:Hand;FONT-FAMILY:Verdana;FONT-SIZE:" + sDateTextSize + ";FONT-WEIGHT:" + sDateTextWeight + "' onMouseOut='fToggleColor(this)' onclick='fSetSelectedDay(this)'> </font>");
    document.write("</td>")
    document.write("</tr>");
    document.write("</table>")
    function fUpdateCal(iYear, iMonth) {
    myMonth = fBuildCal(iYear, iMonth);
    objPrevElement.bgColor = "";
    document.all.calSelectedDate.value = "";
    objPrevCalDateText.color = ""
    for (w = 1; w < 7; w++) {
    for (d = 0; d < 7; d++) {
    if (!isNaN(myMonth[w][d])) {
    if (myMonth[w][d] == dCurDayOfMonth && iYear == dCurYear && iMonth == dCurMonth+1){
    calDateText[((7*w)+d)-7].color = "red"
    objPrevCalDateText = calDateText[((7*w)+d)-7]
    calDateText[((7*w)+d)-7].innerText = myMonth[w][d];
    else {
    calDateText[((7*w)+d)-7].innerText = "";
    </script>
    <script id=clientEventHandlersJS language=javascript>
    <!--
    function Select1_onblur() {
    //-->
    </script>
    </head>
    <body topmargin="0" leftmargin="0">
    <script language="JavaScript" for="window" event="onload">
    var dCurDate = new Date();
    frmCalendar.tbSelMonth.options[dCurDate.getMonth()].selected = true;
    for (i = 0; i < frmCalendar.tbSelYear.length; i++)
    if (frmCalendar.tbSelYear.options[i].value == dCurDate.getFullYear())
    frmCalendar.tbSelYear.options[i].selected = true;
    </script>
    <form name="frmCalendar" method="post" action="">
    <input type="hidden" name="calSelectedDate">
    <table border="0" cellpadding="0" cellspacing="0" bgcolor="#c0c0c0">
    <tr>
    <td>
    <select name="tbSelMonth" onchange='fUpdateCal(frmCalendar.tbSelYear.value, frmCalendar.tbSelMonth.value)'
    style='FONT-FAMILY:Verdana;FONT-SIZE:12px;FONT-WEIGHT:normal' id="Select1" onblur="return Select1_onblur()">
    <option value="1" selected>January</option>
    <option value="2">February</option>
    <option value="3">March</option>
    <option value="4">April</option>
    <option value="5">May</option>
    <option value="6">June</option>
    <option value="7">July</option>
    <option value="8">August</option>
    <option value="9">September</option>
    <option value="10">October</option>
    <option value="11">November</option>
    <option value="12">December</option>
    </select>
    <select name="tbSelYear" onchange='fUpdateCal(frmCalendar.tbSelYear.value, frmCalendar.tbSelMonth.value)'
    style='FONT-FAMILY:Verdana;FONT-SIZE:12px;FONT-WEIGHT:normal'>
    <option value="1998">1998</option>
    <option value="1999">1999</option>
    <option value="2000">2000</option>
    <option value="2001">2001</option>
    <option value="2002">2002</option>
    <option value="2003">2003</option>
    <option value="2004">2004</option>
    <option value="2005">2005</option>
    <option value="2006">2006</option>
    <option value="2007">2007</option>
    <option value="2008">2008</option>
    <option value="2009">2009</option>
    <option value="2010">2010</option>
    <option value="2011">2011</option>
    <option value="2012" selected>2012</option>
    <option value="2013">2013</option>
    <option value="2014">2014</option>
    <option value="2015">2015</option>
    </select>
    </td>
    </tr>
    <tr>
    <td></td>
    </tr>
    <tr>
    <td>
    <script language="JavaScript">
    <!-- -->
    var dCurDate = new Date();
    fDrawCal(dCurDate.getFullYear(), dCurDate.getMonth()+1, 30, 30, "12px", "normal", 1);
    fUpdateCal(dCurYear, dCurMonth+1)
    </script>
    </td>
    </tr>
    </table>
    </form>
    </body>
    </html></nowiki></pre>

    You will at least have to use style.color= "#0000ff" instead of color.<br />
    Also document.all doesn't work in Firefox, so use getElementById() to address specific elements.
    A good place to ask advice about web development is at the MozillaZine "Web Development/Standards Evangelism" forum.
    *http://forums.mozillazine.org/viewforum.php?f=25
    The helpers at that forum are more knowledgeable about web development issues.<br>
    You need to register at the MozillaZine forum site in order to post at that forum.

  • HT1688 I can not restore and upgrade my Iphone 4. When i plug in to computer itune's restore and check for update buttons are not active.

    I can not restore and upgrade my Iphone 4. When i plug in to computer itune's restore and check for update buttons are not active. What is that mean?

    Razmee,
    Guess what? After posting, I read another thread on this topic where someone said they went to an Apple store and the tech person there added the optional username and password in the Outgoing Mail Server boxes, and then reset the phone again. Although I had tried resetting and restarting a few times today, I had NOT reset it after entering the username and password into the optional fields.
    When I entered my username and password into the optional fields, the iPhone entered checks (ticks) to the right of every entry; it had not done this earlier. (I didn't reset at this time, and the outgoing mail would still not transmit).
    So just now, I reset it and the outgoing email was sent!
    Thanks to you and this forum, it's a great ending to a few frustrating days.
    I hope this message helps others. Not only does everything have to be entered correctly in the respective boxes; but once everything is entered and you press the "Done" button, every box should then have a check mark next to it and then you must reset the phone.

  • Hierarchy monitoring detected that the ConfigMgr SQL Server ports 1433,4022, are not active on Firewall exception

    SMS_HIERARCHY_MANAGER reports (Message ID=3353):
    "Hierarchy Monitoring detected that the ConfigMgr SQL Server <fqdn> ports 1433,4022, are not active on Firewall
    exception."
    This is a fresh SCCM 2012 environment with no firewall active. SQL is installed on the same server as SCCM 2012.  Is there a way to fix this without enabling the firewall?

    Check this out
    Issue:
    ConfigMgr logs the error even though Windows Firewall is disabled or it is enabled and all exceptions are added to SQL Server(s).
    Environment: I had an environment  consist of a two node SQL Cluster hosting ConfigMgr database and a separate ConfigMgr primary site server
    Resolution:
    Windows firewall service must be started on both SQL nodes and ConfigMgr itself . As soon as the service is started exceptions for TCP 1433 and 4022 must be added to SQL nodes firewall.
    After that the firewall profiles can be disabled using:
    netsh advf set allp state off
    This is true but if you disable the firewall even thought you have opened the Firewall port then disabled the firewall. The status message will continue to be generated and your site server will still be in an error state.
    Notice that I said "disabled" and not "turn off".
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • Weblogic Deployments are not active

    I patched Identity Manager using Bundle Patch 05. After patching the deployments in weblogic such as nexaweb.ear and xlWebApp.ear are not active.
    The status is 'new'
    java.lang.Exception:[DeploymentService:290049]Deploy failed for id'1,251,143,213,381' since no targets are reachable

    "since no targets are reachable"
    Deployment targets ( servers ) weren't running ...

  • Pictures are not being delivered after saying delivered on iMessage.

    Pictures are not being delivered after saying delivered on iMessage.
    Txting through iMessage works fine. Pic's won't send.
    I turned on and off everything and did all the necessary trouble shooting.
    I'm on a Verizon 4S. and I'm sure Verizon has nothing to do with iMessage system, since it's on its on server.

    bump

  • The g, h and backspace on my keyboard are not working even after replacing with a new one.

    The g, h and backspace on my keyboard are not working even after replacing with a new one. I have also updated my BIOS still d same. Please help me ASAP.
    ...am waiting for a QIUCK RESPONSE

    How does a usb keyboard attached externally work?
    You might try a "hard reset" where you remove battery and AC charger, hold down power button 20-30 seconds and then reassemble and turn on. Reset BIOS (F10) to default settings, too. 

  • When I am trying to sign in to iTunes Store. I am requested to enter a password to the wrong Apple ID mail which does not belong to me... I can't connect to iTunes store and my Viber and Facetime are not active.

    My Apple ID was disabled. I reseted it successfully. Afterwards, when I am trying to update the pending apps in App Store on my phone, in order to sign in to iTunes Store I am requested to enter a password to the wrong Apple ID which definitely does not belong to me ('[email protected]'). Of course, I don't know this password and, consequently, I can't connect to Itunes Store on my Iphone. As a result my Viber and Facetime are not active in the meanwhile. What should I do? Thanks in advance for kind help and solution.

    Where did you get this iPhone?
    Was it new or second hand?
    You have to sign out then sign in with the correct Apple ID and password.
    Settings > iTunes & App Store > Apple ID: > do it here.

  • HT3149 iPhoto 09 When I click on the preview pane to move a photo into edit, it shows up black and the edit buttons are not active.  How do I fix that?

    When I click on the preview pane to move a photo into the edit pane, there is no image just a black square and the edit buttons are not active. A few images in an event will move to the edit pane but most will not.  I cannot work with those images that do not enter the edit pane..no attaching to email, make a card, slideshow, etc.

    There are several possible causes for the Black Screen issue
    1. Permissions in the Library: Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Include the option to check and repair permissions.
    2. Minor Database corruption: Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild.
    3. A Damaged Photo: Select one of the affected photos in the iPhoto Window and right click on it. From the resulting menu select 'Show File (or 'Show Original File' if that's available). (On iPhoto 11 this option is under the File -> Reveal in Finder.) Will the file open in Preview? If not then the file is damaged. Time to restore from your back up.
    4. A corrupted iPhoto Cache: Trash the com.apple.iPhoto folder from HD/Users/Your Name/Library/ Caches...
    5. A corrupted preference file: Trash the com.apple.iPhoto.plist file from the HD/Users/ Your Name / library / preferences folder. (Remember you'll need to reset your User options afterwards. These include minor settings like the window colour and so on. Note: If you've moved your library you'll need to point iPhoto at it again.)
    If none of these help:
    As a Test:
    Hold down the option (or alt) key key and launch iPhoto. From the resulting menu select 'Create Library'
    Import a few pics into this new, blank library. Is the Problem repeated there?

  • My facetime and immesage are not activating. So should I upgrade my iPhone 4 from ios 6 to ios 7 ?

    My facetime and immesage are not activating. So should I upgrade my iPhone 4 from ios 6 to ios 7 ?

    You can try effetively

  • Hyperlinks are not working in muse site

    My hyperlinks are not working towards the top of my site but they work towards the bottom of my site. I have everything below the headers so I really do not know whats going on here?? Can someone please help!!

    The process is as followed:
    Insert a 'Text box'
    Wrote Wesport in Text Box
    Highlighted the word Wesport, right clicked and selected the hyperlink option
    Selected the option to inset a website link
    Pasted the whole link and pressed ok
    The hyperlink then was shown in the document blue with an underline
    Then selected the Adobe Printer through the Print option
    The PDF was then created but hyperlinks did not work.
    Hope thats is enough detail let me know if you need any more.

  • Some pages of my website are not active from the home page

    Built my website with iweb.  When I go to the site the tabs to all the pages show, but several of them are not active from the home page.  If I go to one of the active pages I can then click on the other pages.  Is there a way to fix this?  I've tried reloading the entire site, but several of the tabs remain inactive from the home page.  Any help would be greatly appreciate - Thanks,  Jodi

    Thanks Roddy - I tried moving it down and it didn't work - That line is in the Template I used to build the site and is on every page.  I did finally get the command A to work, but there's nothing covering those bottom three tabs.
    However, when I put my mouse in the area of the box where it has my name (the image you sent me above) it shows a link desktop/site/booker_files and I noticed I have one of the rss feed blue arrows, but I can't seem to delete it.  I wonder if that has something to do with it.  It does the same thing on the website if you hover with your mouse. 
    Truly appreciate your help.
    Jodi

  • 0CML_DELTA : Change pointers are not active

    Hi All,
    I have successfully did the delta init without data transfer for datasource 0CML_DELTA and 0CML_DELTA_CAP. Now, While trying to load delta, I am getting an error "Change pointers are not active" for both the datasource 0CML_DELTA and 0CML_DELTA_CAP.
    The position datasources are fecthing 0 records.
    I have activated the change pointers in BD61, even though I am getting the same error.
    Anyone faced the similar issue or have any clue about the problem.
    Thanks in advance,
    Pravender
    Edited by: Pravender on Sep 30, 2010 11:09 AM

    I resolved it. I was activating change pointers in BD61. But fot CML we need to activate in SPRO--> SAP Banking --> Loans Management --> Basic settings --> Installation parameters ---> Define general installation parameters.
    Then it will work.
    Pravender

  • Change Button Not Active even after Delivery Completion Indicator is Remove

    Hi ,
    In SRM 5.0 ,Change Button Not Active even after Delivery Completion Indicator is Removed for Completed PO to cancel the GR or make changes.
    Thanks & Regards,

    Hi,
    Please check these notes.
    Note 1267916 - PO item flags do not stay checked
    Note 1174982 - Return/deletion of confirmation does not update the PO flag
    Thanks
    Zameer

  • When I select my iPod touch in iTunes the buttons are inactive when I try to sort by name, artist etc.  Also about half of the links under 'file' etc are not active.

    When I select my iPod touch in iTunes the buttons are inactive when I try to sort by name, artist etc.  Also about half of the links under 'file' etc are not active.

    Further to my question, when I plug in and select my iPad 2 I don't have the same problem.  I have restored the settings on my iPod Touch and updated both iTunes and iPod Touch software and restarted my iPod touch.  Nothing has made any difference.

Maybe you are looking for

  • Massive battery life drop after Internet Recovery OS re-install

    Hey, A couple months ago, I made the brilliant decision to try to install Windows 7 with Boot Camp at 3am on a weekend after several days of no sleep (unfortunately, this is one of the least-poor poor decisions I've made recently, but I suppose that'

  • "Invalid Annotation Object" error

    I'm using Windows XP Pro (SP3) on a 2.66 GHz, 2 GB RAM computer, and while working in an Adobe Acrobat 9 document, I had just saved the file (CTRL+S) and the document froze and I got a Windows error box that asked if I wanted to send an error report,

  • Btsync not starting correctly at boot

    Hi all, I have installed Btsync with the help of this nice guide: https://wiki.archlinux.org/index.php/BitTorrent_Sync Running this on the RaspberryPi. And it starts when I boot but it does not show any logs (systemctl status btsync@username)  and th

  • ITunes 7.0.2 Install Trouble

    Hello, Just recently our company deployed a number of macs and I would not have recognized this as a problem otherwise, but on different platforms G5 PPC and my intel mac mini, iTunes 7.0.2 will not install. If we run the install from the "Software U

  • Downloading Business Partners - change message of wrong bank account

    Hi Pros, I just have a question. Actually we download Business Partners from oure R/3 System, and sometimes we have error-bdocs in SMW01. The problem is, that in oure R/3 we changed the message of a wrong postal code to a warning instead of an error,