Adding HTML code corrupts (and destroys) site

I was informed by Apple support that iWeb does not support adding HTML to your page (even though I did so in the Forms widget), and that the code corrupted my page (causing all kinds of font issues, blurry images, and wacky layout errors). They said I would have to rebuild the page from scratch (I have already spent hours building an intensive website that is now useless). I am skeptical that all these iWeb problems (font changes, wrong colors, layout chaos, blurry fonts, etc.) are caused by HTML code, so if anyone has any more info I would appreciate it. I am ready to throw iWeb in the garbage and go back to Dreamweaver MX!!! Thanks.

not totally comfortable posting links to the site (its a business site and not mine)... if you search around for iWeb problems you will find many people having the same issues... when i tried fixing my original page (after deleting the page with the problematic code) the problems still occurred... when i redid the page completely the problems stopped happening (at least for now)... I was told by the Applecare person that the code had completely infested/corrupted the entire site and that it could not be fixed... that I would have to completely recreate the site again... what doesn't make sense is that such a glaring, fundamental problem on such a basic program goes ignored by such a powerful, inventive, flourishing company... disappointing to see all the issues/bugs that get officially ignored on these forums...

Similar Messages

  • I want to upload HTML code from an existing site and then revise in Muse. Is this possible?

    I want to upload HTML code from an existing site and then revise in Muse. Is this possible?

    HTML files from an existing site cannot be reused in Muse as Muse works only with files having extension as .muse.
    However, you use apps like Dreamweaver to edit your existing HTML files.

  • Is it possible to export the html code from a muse site that I am building?

    Is it possible to export the html code from a muse site that I am building?

    Mac_Heibu has the right idea. When you export your site to HTML, it creates a folder that contains all of your pages. Here's an example of what the folder will contain. All of your HTML pages, all your scripts, CSS, and it'll also have individual folders WITHIN your main folder for your phone or tablet versions, if applicable. This method allows you to upload your files to an FTP host. However, if you're trying to upload it to an FTP, the BETTER option would be to go File > Upload to FTP Host. If this has helped you, please mark mac_heibu's answer as the Correct Answer, and feel free to mark my reply as a Helpful Answer.

  • How do i add html code to my muse site? I want pintrest to verify my site.

    how do i add html code to my muse site? I want pintrest to verify my site.

    Hi,
    There are multiple ways in which you can add the HTML code to your site. Few methods are :-
    1) Copy your HTML code, In Muse -> Select Objects-> Insert HTML . Paste your HTML code on the page.  Please reer to this screenshot :- http://prntscr.com/52vprn
    2) If you want to add the HTML code in the Head section of your page, Go to Page Properties-> Metadata-> HTML for <Head> .    Please refer to this screenshot :- http://prntscr.com/52vpx5
    Hope this helps
    Regards,
    Rohit Nair

  • HTML code corrupted by DW CS4

    CS4 is appending bits and pieces of HTML code to the end of my webpages without rhyme or reason.
    Removing the errant code appears to work in code view. BUT AFTER SAVING THE FILE IT REAPPEARS.
    I have tried deleting the start up folder in the documents and settings > Adobe > Dreamweaver and restarting the program.
    In the past this worked - but not today.
    Code is still being appended to the end of my pages and it can not be deleted using Dreamweaver.
    Is there a hot fix or patch coming soon to address this problem?
    Regards,
    Gaver P
    </td></tr></table></td></tr></table>
    <DIV id=footer><P>  &copy; 2009 TSi - Tropic Signs Incorporated</P></DIV>
    </BODY></HTML>
    L> <-- added by program and unable to delete!!!

    Murry,
    Thanks for the reply...
    Unfortuanately for me, it DOES add code, as referenced in my snippet above. the "L>" was added by Dreamweaver.
    I can load the page in DW.
    I can delete the "L>" and save the page.
    I can close the page.
    I can re-open the page and...
    There it is again, the "L>" is back in the page.
    I can also open the same page using CF Studio.
    I can delete the "L>" using Studio.
    I can save the page and
    When I load and view it - the "L>" is gone.
    DW CS4 is corrupting the HTML of my webpages.
    I know (from previous experience with Adobe Tech Support) there's a fix, but I don't recall which Registry Key needs to be deleted?
    Any one know which key needs to be deleted?
    Or.. .if there's a hot fix or patch for DW CS4 that will fix the problem once and for all?
    G

  • Including html code into my iWeb site

    Hi,
    I would like to include googles Analytics tracking code to my website. In order to do this, they say I have to
    "Copy and paste the code segment into the bottom of your content, immediately before the </body> tag of each page you are planning to track. If you use a common include or template, you can enter it there. "
    What does that mean? And can I do that in IWeb?
    Thanks for a reply,
    Anne Wertheim

    I'm not totally sure what you are asking, but I do know this> Go to Insert: HTML Snippet... copy and paste the HTML code there...and it should work.. .just about ANY html did it on mine.
    Even the counters...but now I'm hosting with mobilme... propietarty, but works.... try it.
    Is that what you are asking?

  • Updating HTML code dynamically and calling a URL

    Hi All,
    I have the following requirement -
    Consider the below HTML code:
    In the above code, the URL >>
    https://secure3.i-doxs.net/nytimes/BillaccessView.asp has to be called and this should PICK UP the values from the above code - For example: Client and ABCCO. In other words, the page that is going to be displayed by specifying the URL should use the values that are dynamically generated and specified in the above code. 
    Please let me know if you have any inputs on how to achieve this.
    Best Regards,
    Rajeev

    Hi there ,
    i have a solution for your problem as follows :
    Do not mention the action in form tag ; do it as follows .
    if you have a submit button then use following code in onclick even of submit as onClick="do_this()"  else use onsubmit="do_this()" in <form > tag .
    Include the following <script> </script> in Head element .
    the JS function do_this should be as follows :
    <Script language="JavaScript">
    function do_this()
       var w_ele;
       w_ele = document.getElementById('CLIENT') ;
       w_client = w_ele.value ; // this will give u the name entered in client text field ie. ABCCO in this case.
    var w_url = "https://secure3.i-doxs.net/nytimes/BillaccessView.asp?w_clien="+ w_client ;
      w_form = document.getElementByID('FRM_MAIN');
      w_form.action = w_url ;
    /*this will call the url as "https://secure3.i-doxs.net/nytimes/BillaccessView.asp?w_client=ABCCO" */
    </script>
    NOTE :
    you need to define ID property for form and text element . currently you have used juse name property .
    in the w_url , before' ? ' the name of the parameter in which you want to capture the dynamic client value in target should appear ( i have used w_client just as an example)
    so modifications needed in ur HTML as :
    <FORM name="frmMain"  id="FRM_MAIN" method="POST">
    and
    <TD> First Name: </TD><TD><INPUT type="text" id="CLIENT" name="Client" value="ABCCO" size="50" maxlength="32"></TD>
    I am sure this will solve ur problem as i have done the same thing. if not then feel free to mail me at [email protected]
    do reward me points if found useful.

  • Adding html code to my pages with iWeb

    Hi,
    I am a newbe and I am trying to add some basic html code lines to my pages created with iWeb but I don't understand how to do it.
    May you help me?
    Thanks!
    Eta

    see this:
    http://iwebmore.ctrl-j.eu/iWebMore.html
    http://web.mac.com/varkgirl/iWeb/Aardvarkland/Basic%20HTML%20Additions.html
    max

  • Adding html code to iweb website

    I'm trying to add html code (google analytics code) to my website via iweb.
    Does anyone know how you can do this via iweb?

    Robert ~ Welcome to the discussions. In the upper right of this forum's main page is a Search Forum bar. If you enter:
    analytics
    ...into it and hit Enter, you'll find many old threads about this topic.

  • Adding HTML code

    I've been given HTML code to add to a button for use with a
    form but I'm not sure how or where to add this.
    Any help would be much appreciated
    Cheers
    ******

    It would be very hard to tell you anything other than "put it
    over there",
    without seeing more details (you can protect the innocent in
    your posted
    markup if you want).
    So - please show us the code you have received, and link us
    to the page you
    want to use it on, telling us where you want it to appear.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Altoon" <[email protected]> wrote in
    message
    news:f4oukf$57a$[email protected]..
    > I've been given HTML code to add to a button for use
    with a form but I'm
    > not sure how or where to add this.
    >
    > Any help would be much appreciated
    >
    > Cheers
    >
    > ******

  • Adding html code for an imix  in iweb

    Can anyone help me - I'm trying to publish my imixes to my dotmac website using iweb. you can get the html code from the itunes store but i dont know how to make it work - can anyone help me please?

    http://web.mac.com/varkgirl/iWeb/Aardvarkland/Basic%20HTML%20Additions.html

  • Why is adding HTML code so difficult?

    I'm trying to add a weather widget into my book.  Yes, I've been spending a lot of time looking into dashcode and creating the widget from scratch, but I can't get it done.  Even though I got Xcode and dashcode installed, I'm not that technically inclined and can't figure out how to take this snippet:
    <script src="http://weatherandtime.net/swfobject.js" type="text/javascript" ></script><div id="div_weather_05" style="padding:0px;text-align:center; margin:auto auto;width:170px; height:220px;"><div style="padding:1px;position:relative; z-index:100; color:#FFFFFF; text-align:center;left:50px;top:182px; width:115px;height:auto;overflow:hidden;"><a style="margin:0px; padding:3px; color:#FFFFFF; text-decoration:none; font-size:12px;" href="http://weatherandtime.net/en/Asia/Sri-Lanka/Colombo-weather.html" title="Colombo Weather"><nobr>Colombo Weather</nobr></a></div><span id="swf_weather_05"> </span></div><script type="text/javascript" language="Javascript">swfobject.embedSWF("http://weatherandtime.net/weather_05.swf", "swf_weather_05", "170", "200", "10","weather_05.swf", {city: "19459",lang:"en"}, {menu:"false",wmode:"transparent",allowScriptAccess:"always"}, {id:"weather_05",name:"weather_05"});</script>
    and make it into a widget that I can just drag and drop into the book's HTML widget window.  Is there an easier way to do this?  Otherwise, unfortunately, I don't think I'll be able to use some of these key features.

    Seeing that your code is in <script tags>, you could try pasting it in the <body> of the index.html file, right after opening a new custom safari widget. The standard code view shows the main.js file, click on the double arrows next to the indicator to switch to the index.html file:
    After that you can simply deploy your widget to your disk (Make sure you don't deploy it to the dashboard).
    EDIT: Make a custom mobile Safari widget
    EDIT2: Apple mobile hardware does not run flash. So I guess you're out of luck with this piece of code. I deployed the code you showed to try it out myself, and while it gives no errors, it only shows the text "Columbo Weather" with a link to the site.  

  • Missing Horizontal Rules After Adding HTML Code

    Hi iWeb Users,
    I added PayPal links to my site and on two of my For Sale pages the horizontals rules are missing from under my page headings. I have attempted for several days to correct this problem but I am unable to because I only have a basic understanding of HTML coding.
    I would greatly appreciate any help in fixing this small problem. Instructions on how to add the ~HR~ tag so the rule underlines my page heads is all I need. Help!!!
    The URL is <http://risingstargraphics.net>.
    Thanks for any and all input.
    James
    G4/533DP Mac OS X (10.3.9)
    G4/533DP Mac OS X (10.3.9)
    G4/533DP Mac OS X (10.3.9)

    The line on the For Sale page?
    I suspect that you may have accidently deleted it, to put it back open one of the other pages, click on the line in that page. Then Copy it, open the For Sale page and Paste, the line will land in the same place on the For Sale page as is was on the other page.
    Will
    1GHz G4, 15" PowerBook, Airport Network, 1G iPod Mini   Mac OS X (10.4.6)   www.willg4pb.com for iWeb tips

  • You we edit the html code of a Iweb site

    Hi,
    I want to add some information to the html coding of my website. I built it with Iweb 09. How can I access and edit it? Tks!

    Then consideriWeb SEO Tool.
    Click to view full size
    Click to view full size
    Click to view full size
    OT

  • Corrupt chunk encoding, corrupt html code

    We had corrupt chunk encoding on longish webpages (HTTP 1.1, HTTPS, HTML Code >2MB) and finally found out that the load balancer F5 from BIG-IP had a problem with HTTPS encoding .. updated the thing .. problem solved.
              Hope this helps.

    Can you please share the solution? What did you need to update in the load balancer?

Maybe you are looking for

  • FBCJ-Opening and Closing balance do not appear in Language Hungary

    *Hello Friends* *I am getting a typical problem, as when I see the cash balance in FBCJ with language English, both opening and closing balance are proper, but when I login with Language Hungary(HU) both opening and closing balance disappears and is

  • Re-using statements with open ResultSet

    Hi, Question about re-using connections while keeping a result set open - basically I am trying to do: Connection conn = dataSource.getConnection(); Statement stmt = conn.createStatement(); if (stmt.execute(QUERY)) resultSet = stmt.getResultSet(); Ar

  • CR 122 car holder problem

    I bought a CR 122 for my N8. But allready the first time I rotated it (to get the phone in "portrait mode") the center pin (from the phone holder to the suction part) became "loose". It's stable up/down and sideways. But rotates 10 deg each way. Quit

  • Availability Check in planned order

    Hi Everyone, What is differecnce between MDVP  collective ATP check and MD12 ATP. I am getting different result for the same planned order. could you plase tell me why this so. Thanks Siddhesh

  • App download to work computer rather then home

    I am working away from home (on a PC, unlike my Mac at home) and I needed access to an expensive app (£29.99). Downloaded iTunes onto the PC, plugged in my iPhone and bought the app. It was too large a file to download it straight to the iPhone but i