Problem insurting html with iWeb

Hi,
I would like to add this menu that I created in html (http://www.carnet2voyages.com/menu.html) to a page of my site (http://www.carnet2voyages.com) with iWeb.
I copied the code in "insert html fragment" in iweb, but the menu is too big for my page and font-size doesn't seem to work in the head.
fontsize seems to work in <body>, but there is a problem with the links
Is it possible to put <head> in fragment? If not how can we work on the <head> section?
Thank you for your help.

Nothing wrong with the menu file. You may want to add a [DOCTYPE|http://www.alistapart.com/articles/doctype>.
If it is to wide, eihter remove a menu item or increase the width of Accueil.html . But I displayed the menu on top of the page and it should fit.
Any changes to the menu, like fontsize, color etc., should be done in the menu file.
To make the menu work in a webwidget add target="_top" to every url in the menu. Otherwise a page will open in the tiny space of the menu. So it should look like this:
+<a class="menu1" href="http://www.carnet2voyages.com/Ouest-Americain/Infos.html" target="_top">Infos</a>+
[Here's a sample of a dropmenu|http://web.mac.com/wyodor/Dropmenu/pagewithdropmenu.html]

Similar Messages

  • HTML with iWeb

    Hi,
    I just got the iWeb program, im trying to access the html code to add extra's to my site.
    Currently I am just closing down iWeb and editing through a text program, but im wondering if there is a way to view the html within iWeb so i dont have to close everything down, etc.
    Also when i do this, all changes to the html have to be after im done editing with iWeb because the changes wont load when i load my site in iWeb.
    Any help would be good, thanks.

    You can't view html with iWeb, and any custom html
    you add via a text editor or other means will be
    erased whenever you republish the page using iWeb.
    It really isn't an appropriate tool for what you
    want to do, at least not in this version.
    That is a real BUMMER! After spending many hours over this weekend setting my site up, I need to add a bit of html at the end of my welcome page:
    It is a dynamic weather report.
    I figured out how to add it with a text editor, but every time the file is edited in iWeb and then published, the added code is erased! I hope there will be a way to deal with this WITHIN iWeb soon.

  • Problems embedding html with jquery content

    Hey muse people.
    i'm currently struggling with a very annoying issue:
    I have a piece of html code with jquery bits in it (it's a 360° plugin). For some reason, it doesn't seem to work when i upload to my server and try it.
    I have tried the steps suggested in this thread: HELP! Adding Jquery to Muse! , but whenever i remove parts of the "JS Include" section, i get warnings and errors entering the page. The plugin works, though..
    Does anyone know a workaround on this one?
    Thanks in advance

    Hi Abhishek,
    thank you for looking into it:
    Homepage  <-  this is a simple page from muse with the html code embedded - it does not work (the image should switch when you click the "type" buttons)
    http://www.lichtermeile.de/simple/ <- here i just made an index.html and added the same code i used to embed as html in the muse page above
    It works just fine when i remove parts of the JS Include and fully remove the "Other scripts" section that muse added to the end of each html file .. but i don't know if that's a healthy and compatible way.
    This is the code:
    <html> 
    <script src='http://code.jquery.com/jquery-1.9.1.min.js' type='text/javascript'></script>
        <script src='http://code.vostrel.cz/jquery.reel.js' type='text/javascript'></script>
        <img src="images/bild000.jpg" width="400" height="500"
          class="reel"
          id="image"
          data-images="images/bild###.jpg"
          data-cw="true"
          data-frames="36"
          data-duration="6"
          data-velocity="3"
          data-speed="-0.2"
          data-brake="0.2">
        <p>
          Please choose a product:
          <button id="image1">Type 1</button>
          <button id="image2">Type 2</button>
        </p>
        <script>
          $('#image1').click(function(){
            $('#image').reel('images', 'images/bild###.jpg');
          $('#image2').click(function(){
            $('#image').reel('images', 'images2/neu###.jpg');
        </script>
        <script> $.reel.def.indicator = 5; </script>
    </html>
    Thank you!!!

  • Problem viewing html with JEditorPane..

    The program will run, but it displays nothing but an empty pane. The program program also stars out very small in the top right hand corner of the screen so I have to resize it. What do I need to do to be able to view the HTML file?import javax.swing.*;
    import javax.swing.text.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.net.URL;
    import java.io.IOException;
    public class test_pane extends JFrame //implements ActionListener
    public test_pane()
    super("Note");
    //Create editor pane
    JEditorPane editPane = createEditorPane();
    JScrollPane escroll = new JScrollPane(editPane);
    escroll.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
    escroll.setPreferredSize(new Dimension(500, 250));
    escroll.setMinimumSize(new Dimension(10,10));
    private JEditorPane createEditorPane()
    JEditorPane editPane = new JEditorPane();
    editPane.setEditable(false);
    String s = null;
    try {
    s = "file:"
    + System.getProperty("user.dir")
    + System.getProperty("file.separator")
    + "TextSamplerDemoHelp.html";
    URL helpURL = new URL(s);
    displayURL(helpURL, editPane);
    catch (Exception e)
    System.out.println("Couldn't create help URL: " + s);
    return editPane;
    private void displayURL(URL url, JEditorPane editPane)
    try {
    editPane.setPage(url);
    catch (IOException e)
    System.out.println("Attempted to read a bad URL: " + url);
    public static void main(String[] args)
    JFrame frame = new test_pane();
    //frame.setSize(600,500);
    frame.addWindowListener(new WindowAdapter()
    public void windowClosing(WindowEvent e)
    System.exit(0);
    frame.pack();
    frame.setVisible(true);

    Ok, I couldn't see where you add the scroll pane to the content pane of the frame and without a minimum size set somewhere the frame.pack() would shrink it completely. I recreated what you wrote and put the minor changes in there.
    Try this out:
    import javax.swing.*;
    import javax.swing.text.*;
    import javax.swing.text.html.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.net.URL;
    import java.io.IOException;
    public class Temp extends JFrame {
         BorderLayout borderLayout1 = new BorderLayout();
         JScrollPane jScrollPane1 = new JScrollPane();
         JEditorPane jEditorPane1 = new JEditorPane();
         HTMLEditorKit editorKit = new HTMLEditorKit();
         public Temp() {
              super("Note");
              this.getContentPane().setLayout(borderLayout1);
              jEditorPane1.setEditable(false);
    jEditorPane1.setEditorKit(editorKit);
              this.getContentPane().add(jScrollPane1, BorderLayout.CENTER);
              jScrollPane1.getViewport().add(jEditorPane1, null);
              String s = null;
              try {
                   s = "file:"
                   + System.getProperty("user.dir")
                   + System.getProperty("file.separator")
                   + "TextSamplerDemoHelp.html";
                   jEditorPane1.setPage(new URL(s));
              catch (Exception e) {
                   System.out.println("Couldn't create help URL: " + s);
         public static void main(String[] args) {
              JFrame frame = new Temp();
              frame.setSize(600,500);
              frame.addWindowListener(new WindowAdapter()
              public void windowClosing(WindowEvent e)
              System.exit(0);
              //frame.pack();
              frame.show();
    }

  • In IOS7 none of my YouTube movies show up on my site build with iWeb and its YouTube widget. On an iPad running IOS6 the site still works fine, and all movies play well. What is going on,and what can I do to solve this problem ???

    In IOS7 none of my YouTube movies show up on my site build with iWeb and its YouTube widget. On an iPad running IOS6 the site still works fine, and all movies play well. What is going on,and what can I do to solve this problem ???

    It's only Safari/iOS7. Chrome iOS7 works fine.
    Solution?
    Go to YT and grab the code.
    Paste it in a HTML Snippet.

  • Have published iweb site for five years with no problems and just opened a new site and get - 404: Page not found  This error is generated when there was no web page with the name you specified at the web site.-is the problem with iweb or with hosting?  T

    I am sorry if thie is republished-My first time doing this and I am not sure what goes where and where to hear feedback.
    Have published iweb site for five years with no problems and just opened a new site and get -
    404: Page not found 
    This error is generated when there was no web page with the name you specified at the web site.-
    Troubleshooting suggestions:
    Ensure the page you are linking to exists in the correct folder.
    Check your file name for case sensitivity . Index.htm is not the same as index.htm!
    Temporarily disable any rewrite rules by renaming your .htaccess file if it exists
    is the problem with
    iweb or with hosting?
    One Apple tech started to fix Iweb and had to end session and the next said problem with hosting at Network Solutions as it published
    to local folder. NWS has checked sttting a few times-
    Any help would be extremely appreciated as trying to fix this for about five weeks
    Thanks VG
    <Email Edited by Host>

    It's a really bad idea to post your email address - it's an invitation to spam - and I've asked the Hosts to remove it. (Even though I've now noticed you mis-spelled it! - anyway, never post your address in a forum.)
    You have a site here: http://virginiagordon.com/www.virginiagordon.com/WELCOME.html
    If that's not the page you are having trouble with, what is that page's URL?

  • I have created a site with iWeb. I have replaced the iWeb Nav bar with a vertical one I made myself. Problem is, my top button disables itself if it overlaps into the "hidden" nav bar area. I can cmd click and drag it into this area, but then all the rest

    I have created a site with iWeb. I have replaced the iWeb Nav bar with a vertical one I made myself. Problem is, my top button disables itself (and the animation doesn't work) if it overlaps into the "hidden" nav bar area (indicated by a blue rectangle). I can cmd click and drag it into this area, but then all the rest of my site is pushed down the page. Don't know what to do about this. I don't know how to bring the rest of the page up without dragging it also into the designated nav bar area. Also, by doing this, is it affecting my site in ant way? see my site here at www.steveburrowsimages.com
    The home page is with it all draged into the nav bar area and the about page is with is outside the nav bar area (notice that the top button does not animate or work as a button.
    Getting confused here. Anyone got any ideas?

    Well, you made a good start with SEO by getting rid of the iWeb default navigation since it doesn't help the spiders and, out there in the real world, there are more people than you would think with javascript turned off in their browsers.
    One of the downsides of iWeb is that it doesn't allow for the alt attribute in the img tag. Its well worth adding these to give you extra keywords even if you have captioned all your images. Use iWeb SEO Tool for this...
    http://www.iwebformusicians.com/Search-Engine-Optimization/Tags.html
    iWeb, just like most drag and drop software, creates a huge amount of code which causes the pages to load slowly in the browser. Running you files through an optimizer will help to reduce this problem and further reduce the size of image files even beyond the initial optimization you do before loading them into iWeb...
    http://www.iwebformusicians.com/Search-Engine-Optimization/Optimize.html

  • Problem with iWeb SEO breaking iWeb blogs (Blog Summary Widget error).

    As as happened to many others, my blog was broken. The only thing that showed up when publishing was "Blog Summary Widget", no actual blog.
    I came on here and searched, uninstalled with apzapper, deleted preferences before that, tried everything.
    Still the problem.
    Then I notice my blog works. I'm excited. I move on in my post iweb part of the process (iWeb SEO and dreamweaver edits) to then see it's broken again.
    After some testing (changing 1 file at a time, one step at a time) I found that when iWeb SEO touched the home.html (where my blog is) it broke it.
    This is a new phenomenon as I was doing this all the time before with no problem.
    I even tried updating to the latest version of iWeb SEO and the same problem.
    So if you're having this problem, and are using iWeb SEO, try it without and see if you still have the same problem.

    I'm getting the same problem too. I've just updated my iWeb from 1 to 2. I've had to more or less re-create my Blog from scratch as the upgrade wrecked the summary and recent items pages (probably because I'd use jTemplate).
    So I created a new Site, dragged the old blog over to it and created a brand new one in my proper site. I then copied all my formatting over AND all the entries. All looks fine in iWeb, but I see the same error messages as described here. Take a look here : http://www.andrewmay.biz/test/
    Obviously I've moved a lot of stuff around from the normal White template, and deleted a few things too, but I would have hoped that iWeb wouldn't let me trash things that then broke it.

  • Problem with iWeb publishing to IE

    Hello, I am experiencing a problem with iWeb '08 publishing content to Internet Explorer. The images and web pages look fine in Safari and in Firefox, but a lot of the web page images are mirrored in IE, covering up large parts of the text. Please don't tell me I have to spend $79.00 on upgrading to iLife '09. I just upgraded my iWorks to '09, but would upgrading to '09 in this instance even be the answer? Please advise. I fear that I will alienating any of my IE web surfers. Any help and advice would be greatly appreciated. Thank you.

    Hello and welcome to the board.
    IE is a terrible browser to render pages made with IWeb (I'm not sure upgrading to ILife 09 will fix your problem).
    I decided to somewhat "alienate" my IE visitor by putting a message on my home page that recommend them to use a compatible browser. Check my page (using IE here: http://www.wesdotphotography.com/Home.html) and look at the message. Also if you use any other browser you will not see my message and will experience a better browsing. It is not the fault of IWeb but more like Microsoft not writing a proper browser. a lot of people will confirm my say.
    Search this forum and you will see a lot of complaints about IE.
    Good luck
    Thierry
    PS: post you website so we can take a look.
    +Disclaimer: I may receive compensation via Google ads if you visit my website.+

  • I created a website with iWeb but use GoDady for hosting it rather than MobileMe. The images on my Gallery page do not show at all on the external domain but they DO show when seen on MobileMe. Has anyone encountered this problem before? Many thanks!

    Hello al!
    I created a website with iWeb but use GoDady for hosting it rather than MobileMe. The images on my Gallery page do not show at all on the external domain but they DO show when seen on MobileMe. Has anyone encountered this problem before? Many thanks!

    Just create a new page (or use the existing photo page) on your external site and use html to add an iframe sized to the page and link it to the mobilme gallery page. Works for me just fine when showing my gallery from a yahoo site.
    like this
    <iframe scrolling="off" allowTransparency="true" frameborder="0" scrolling="yes" style="width:100%;height:100%;border:none" src="http://gallery.me.com/your_account_name"></iframe>

  • Index problems with iweb 09 and ftp uploads

    Hi,
    after several issues with the site i eventually re-built and published with iweb 09's built in ftp.
    The problem i have is that the published site goes in a folder called Site on my server but the index page that redirects to the welcome.html file doesn't direct it to inside the site folder. This means when i navigate to the site it comes up as welcome.html not found on this server.
    I've resorted to filezilla again as when i publish to a local folder and upload it works ok.
    I still want to resolve this as the iweb ftp will publish just the canges so is loads quicker.
    I imagine the only way to resolve this is to change the settings in the iweb site settings page.
    does anyone know if i need to tell iweb a different path other than the server url.
    EG; my url is www.thepaddyproject.co.uk
    iweb put the site on the server ok (www.thepaddyproject.co.uk/Site
    the index page needs to redirect to www.thepaddyproject.co.uk/Site/Welcome.html
    any help appreciated
    Paul

    Posted by me in error.

  • Problem with iWeb 09, after the publication in a local file.

    *Subject: problem with iWeb 09, after the publication in a local file, i can't see my blog, nor my photos, but before that all was working fine.*
    After the publication in the local file, I see all my pages, but there is a mistake on the page "Blog" where I just can see the top of my page, it's cut and I can't see it entirely, so I can't see the inputs while I should see 3 news or 3 inputs. And it's the same for the "Photos" page where the page is cut, I can't see the photos, and it's just written : "Put the slide show and subscribe".To finish, when I want to activate the comments, it doesn't work neither.
    Please help me.

    I want to activate the comments, it doesn't work neither.
    The comments feature is only available when you publish to the MobileMe server, so I don't think you can use it when you publish to a local file.

  • Problem with iWeb after associating a personal domain name with my MobileMe

    I think I did this by the book. I associated my personal domain name with my MobileMe account, then changed the CName pointer at GoDaddy to MobileMe (MM), then went back to MM and hit 'Done'. iWeb now lists my MM account as 'My account name (personal domain name). It took a little while for the DNS pointer to propogate, but now I can go to a browser, type in my personal domain name, and MM delivers my iWeb website as I wanted it to, apparently from my domain, not web.me.com. The problem is, as soon as the DNS propogated, MM delivers my MM site OK, but iWeb can't find the files for it anymore. All my pages immediately went red (unpublished) when I tried to update the site, and any attempt to Publish gives me this error "iWeb couldn’t connect to MobileMe. Make sure your Internet connection works and try again." I'm cable connected to an ADSL router, and Airport connected to a cable router, and neither service has dropped out. I've rebooted, and retried, and the website is up under my own domain, so GoDaddy and MM both got it right. What did I do wrong? Thanks, someone... anyone?

    This is now sort of resolved, but not very satisfactorily. One of the trainers at my local Appple Store found an old support issue in the archives going back to 2008, which blamed security settings for update problems. Coincidental with associating MobileMe with my personal domain, I had checked the privacy box and added an ID and PW to the site. That was the problem, not the personal domain, that was preventing iWeb from finding my MM account. Uncheck that box and my site happily updates. Of course, now I have a site that I cannot make private. In this case, not a show-stopper, but disappointing. I have reported it as a bug in the latest version of iWeb. Thanks for your help.

  • Problem with iWeb 1.1 photos solved... for me, at least

    After updating, some of my photo pages were broken. Slideshow wouldn't work and clicking on a photo would not open a larger version. Some pages, however, did work. After hours of trying to figure this all out, I finally narrowed the problem down. If the page had an apostrophe in the title, it was broken (e.g.:Tyler's Party). If it did not, it worked. These titles worked in the earlier version. Simply deleting one punctuation mark magically made the pages work again. If you are having this problem check this or other punctuation in the titles.

    I had the exact same problem and as others have suggested, the apostrophe in the page name could be the culprit of the problem. For me, that was the problem. I had a page named "Dog's day at the beach" and that worked just fine in iWeb 1.0.1. Now with iWeb 1.1, I had to rename is "Dog day at the beach" which luckily has a similar meaning given the context of my photos and when I took it.
    A bit bizarre how such a simple apostrophe could escape Apple's iWeb engineers.
    I hope this will be fixed in a soon-to-come update.

  • Problem publishing Photo page with iWeb 08

    Hello,
    I have a problem when publishing photo pages with iWeb 08. Upload starts and then I get the error message that iWeb encountered a problem while publishing. The funny thing is that I can see
    the photo page in Safari. The only problem is that when starting the slide show I can not see the
    forward/backward buttons. Publishing a photo page with iWeb from a .me web photo gallery works without any error message, but still when starting the slideshow the navigation buttons are not displayed. Actually if you click on the place where the navigation buttons are supposed to be,
    you can go picture forward/backward. Any idea ?

    I am having the same issue, except I do not get any error messages when publishing to a folder. Clicking on the "index" file within the folder will open the photo page in both Safari and Firefox. Everything functions as designed except no forward/backward/pause buttons are visible below the slideshow. There are text box outlines with a question mark where these buttons are supposed to be located, and I can pause, advance or reverse slides. Eventually these question mark outlines disappear and stay disappeared.
    The end result is there are no intuitive graphic indicators on the slide show to even suggest to the viewer that he/she has some control over the presentation. I don't believe I can add explanatory text boxes to the slide show to compensate for the missing icons. This lack of visible control elements in the slide show is a huge issue. I am reasonable sure the problem does not reside within my computer. I've also reviewed inspector control options for a photo page/slide show and haven't gotten any combination of check boxes to make a difference.
    I'm beginning to think this may be an unexpected conflict that was contained within a recent software update. It might well be worth a close look at programming code by Apple technicians. In the meantime, can anyone offer a clue as to what might be going on?

Maybe you are looking for

  • 0 songs on my synced ipod

    Only a novice Ipod gen 4 user and was trying to figure out how to build a library. After figuring this out and trying to re-sync my ipod, I get the msg,"Ipod Sync Complete, but there are 0 songs on my ipd even though I have 37 albums. Any ideas are g

  • CAN YOU HELP WITH TAIYO YUDEN DISKS?

    A co-worker made me think about the life of my DVDs that I'm recording my productions on, and I found on various blogs that Taiyo Yuden disks are supposed to be the best (and they are much expensive!).  And +R the best media type. So I got a stack of

  • Duplicate contact on sms app

    Since I have Installed iOS6 when I send a sms to a contact his answer arrived from another new contact (with the same name) So in sms app Iam having duplicated contacts.

  • ACS Remote-Address IP adress logged wrongly

    I'm running ACS acs-5.4.0.46-B.221 and I found suspicious log entries. The issue is that IP address logged in logfile has reverted all octets. Logged Remote-Address=Z.Y.X.W instead of Logged Remote-Address=W.X.Y.Z. Is it known bug or not? These supis

  • CUPC 7.1 addin breaks outlook after kb2293428 patch is applied

    On our Windows XP sp3 with outlook 2003 once the patch is applied and the addin is enabled. You will get the "Outlook has encountered a problem an needs to close" when you launch outlook. Outlook will not launch untill you disable the addin. Any idea