HTML formatted properly? Images too large?

I am very interested in iWeb but I am seeing some small problems. Websites created with iWeb seem to have format issues. When I submit the pages to Doctor html I get:
There were xxxx unset image command tags that you should set to improve your overall web page performance.
Size and alt text for pictures doesn't seem to be included when iWeb formats pictures.
There are xxx browser support conflicts in your document.
The browsers conflicts can be from 15-20 conflicts. All versions of Netscape in particular are effected.
In addition the average sites tend to be slow loading because the pictures are huge and uncompressed.
Kurt

Maybe in the next incarnations of the program there will be something to assist the user to optimize their graphics, perhaps by opening them in iPhoto or the app of your choice.
Photoshop Elements has one of the friendliest interfaces for slimming down graphics. It shows you the effects of your compression, allowing you to compress the file to the smallest integer before it starts looking bad. It is amazing how much smaller you can make your graphics without a noticeable loss in web quality.
There almost should be a warning when graphics are over 40k in size.
I watched Steve Jobs use this program in his keynote and got very excited. Besides the minor glitches mentioned in my first post, this program looks dirt-easy to use with gorgeous results. For myself, I would probably go into the source and add the missing codes to optimize my site.
Missing the size elements in the image tag makes the page open more slowly as the browser has to calculate the size of the graphics and move text around to fit. With the image size tags in place the browser immediately assigns that amount of space to the graphic and loads the rest of the page more quickly so you see more sooner.
The alt tag provides a name for the picture in case the site is loaded without graphics. Not a really major problem to leave it out.
The browser conflicts may be more of an issue. Netscape and Mozilla may not render the pages as expected. When I get into work I will check out these pages in Netscape 7.
Kurt

Similar Messages

  • Images too large on desktop

    I shoot photos with a fairly high resolution; the images are usually about 3mb each. When I set a photo to be the desktop image, it is way too large for my desktop; much of the photo is off-screen. I have tried cropping, exporting as a smaller file and then importing that, etc., they all have problems, plus take way too long.
    Is there an easy way to get the large photo to fit on the desktop properly?

    Have you tried cropping the photos to the same size ratio or pixel dimensions as the monitor?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    Note: There's now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

  • Images too large for Drop zone in Template

    Is there a way I can resize images I want to use after I drop it in a drop zone? For some reason, all my images are too large for the drop zones - even after making smaller in photoshop.
    Thanks!

    I'm fairly new to DVD SP too and wondering the same thing.
    Shouldn't we be able to edit the image mask?
    It's kinda worthless to just accept what DVDSP decides to do with the photo.

  • Related product images too large

    When I add relatedproducts data tag to the product large module or productlarge.htm, the heading and images for the related products are way too large. I need to know exactly where and what code I need to change to edit their size. any help would be greatly appreciated. thanks. example: 1932 Ford Car billet aluminum dash insert w/ Auto Meter Arctic White gauges

    Dude, Get yourself Firebug for starters then you can see exactly what code you need to change.
    Its the css, currently all your big text is h3 in the div class "title". You could target this and change the font size or use other tags in the template

  • ITunes producer says images too large

    trying to upload epub book via iTunes producer. Get error message that images are too large, but they are not.

    You need to have all the apps in iTunes to update them using your Mac. iTunes will show you an update for an app with a number at the right of "Apps", in the sidebar. Just go to Apps and press "1 update available". Sync your iPhone when the download finishes. You can also connect your iPhone to Wi-Fi and download it

  • Text format + attached image files or Html format + displayed images ?

    Hi, I have this kind of probleme and I need some help.
    (Code : see below)
    I want to send a mail with some attached image files.
    For the message part, I create a MimeBodyPart and add two kinds of message (text or html) and this part is multipart/alternative.
    For the attachment part, I create another MimeBodyPart and I set the Header like this : xxx.setHeader("Content-ID", "<image>").
    When I use outlook (html format) , I receive a mail with the picture displayed at the bottom, it's perfect.
    However the problem is for the mailbox which is in text mode, I receive a mail with message + attachment files, but I also have some image frames generated by xxx.setHeader("Content-ID", "<image>") I guess.
    Who can give me a hand to implement something that able to make difference according to text format or html format.
    I post my code here, thanks a lot :
    //set Message
         msg.setText(pMsgText, DEFAULT_CHARSET);
         // Partie Texte brut
         MimeBodyPart textPart = new MimeBodyPart();
         String header = "";
         textPart.setText(header + pMsgText, DEFAULT_CHARSET);
         textPart.setHeader(
                   "Content-Type",
         "text/plain;charset=\"iso-8859-1\"");
         textPart.setHeader("Content-Transfert-Encoding", "8bit");
         // Partie HTML
         MimeBodyPart htmlPart = new MimeBodyPart();
         String images = BTSBackUtil.generateImgSrc(pictureContainers.length);
         String endPart = "</div>\n</body>\n</html>";
         htmlPart.setText(pMsgTextHTML+images+endPart);
         htmlPart.setHeader("Content-Type", "text/html");
         // create the mail root multipart
         // Multipartie
         Multipart multipart = new MimeMultipart("mixed");
         // create the content miltipart (for text and HTML)
         MimeMultipart mpContent = new MimeMultipart("alternative");
         // create a body part to house the multipart/alternative Part
         MimeBodyPart contentPartRoot = new MimeBodyPart();
         contentPartRoot.setContent(mpContent);
         // add the root body part to the root multipart
         multipart.addBodyPart(contentPartRoot);
         // add text
         mpContent.addBodyPart(textPart);
         // add html
         mpContent.addBodyPart(htmlPart);
         // this part treates attachment
         if (pictureContainers != null){
              PictureContainer pictureContainer = new PictureContainer();
              String fileName = "";
              for(int i = 0; i < pictureContainers.length; i++) {
                   pictureContainer = pictureContainers;
                   byte[] bs = pictureContainer.getImgData();
                   fileName = "image" + i +".jpg";
                   DataSource dataSource = new ByteArrayDataSource(fileName, "image/jpeg", bs);
                   DataHandler dataHandler = new DataHandler(dataSource);
                   MimeBodyPart mbp = new MimeBodyPart();
                   mbp.setDataHandler(dataHandler);
                   mbp.setHeader("Content-ID", "<image"+i+">");
                   mbp.setFileName(fileName);
                   multipart.addBodyPart(mbp);
    // end attachment
    msg.setContent(multipart);

    Hi All!!! I have created this code , i hope this w'll solve u'r problem , this code display u'r html text and display the images below on it, no need to attach the image...... byee.
    package Temp;
    import javax.activation.DataHandler;
    import javax.activation.DataSource;
    import javax.activation.FileDataSource;
    import javax.activation.URLDataSource;
    import javax.mail.Authenticator;
    import javax.mail.BodyPart;
    import javax.mail.Message;
    import javax.mail.MessagingException;
    import javax.mail.PasswordAuthentication;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.AddressException;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeBodyPart;
    import javax.mail.internet.MimeMessage;
    import javax.mail.internet.MimeMultipart;
    public class HtmlImageExample {
    public static void main (String args[]) throws Exception {
    String host = "smtp.techpepstechnology.com";;
    String from = "[email protected]";
    String to = "[email protected]";
    //String to = "[email protected]";
    String dir=null;
    //String file = "C://NRJ/EmailApp/src/java/MailDao//clouds.jpg"];
    //File file = new File("C:\\NRJ\\EmailApp\\src\\java\\Temp
    Sunset.jpg");
    // Get system properties
    //Properties props = System.getProperties();
    HtmlImageExample html1 = new HtmlImageExample();
    html1.postImage(to,from);
    // Setup mail server
    String SMTP_HOST_NAME = "smtp.techpepstechnology.com";//smtp.genuinepagesonline.com"; //techpepstechnology.com";
    String SMTP_AUTH_USER = "[email protected]"; //[email protected]"; //techpeps";
    String SMTP_AUTH_PWD = "demo"; //techpeps2007";
    //my code
    public void postImage(String to, String from) throws MessagingException, FileNotFoundException, IOException
    Properties props = System.getProperties();
    props.put("mail.transport.protocol", "smtp");
    props.put("mail.smtp.host", SMTP_HOST_NAME);
    props.put("mail.smtp.auth", "true");
    // props.load(new FileInputStream(file));
    Authenticator auth = new SMTPAuthenticator();
    Session session = Session.getInstance(props, auth);
    // Create the message
    Message message = new MimeMessage(session);
    // Fill its headers
    message.setSubject("Embedded Image");
    message.setFrom(new InternetAddress(from));
    message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));
    message.setContent
    h1. This is a test
    + "<img src=\"http://www.rgagnon.com/images/jht.gif\">",
    "image/jpeg");
    // Create your new message part
    //BodyPart messageBodyPart = new MimeBodyPart();
    //mycode
    MimeMultipart multipart = new MimeMultipart("related");
    MimeBodyPart mbp1 = new MimeBodyPart();
    // Set the HTML content, be sure it references the attachment
    String htmlText = "<html>"+
    "<head><title></title></head>"+
    "<body>"+
    " see the following jpg : it is a car!
    "+
    h1. hello
    "+
    //"<IMG SRC=\"CID:Sunset\" width=100% height=80%>
    "+
    "<img src=\"http://www.yahoo.com//70x50iltA.gif\">"+
    " end of jpg"+
    "</body>"+
    "</html>";
    mbp1.setContent("h1. Hi! From HtmlJavaMail
    <img src=\"cid:Sunset\">","text/html");
    MimeBodyPart mbp2 = new MimeBodyPart();
    mbp2.setText("This is a Second Part ","html");
    // Fetch the image and associate to part
    //DataSource fds=new URLDataSource(new URL("C://NRJ//MyWeb//logo.gif"));
    FileDataSource fds = new FileDataSource("C://NRJ//MyWeb//Sunset.jpg");
    mbp2.setFileName(fds.getName());
    mbp2.setText("A Wonderful Sunset");
    mbp2.setDataHandler(new DataHandler(fds));
    mbp2.setHeader("Content-ID","<Sunset>");
    // Add part to multi-part
    multipart.addBodyPart(mbp1);
    multipart.addBodyPart(mbp2);
    message.setContent(multipart);
    // Send message
    Transport.send(message);
    //mycode
    private class SMTPAuthenticator extends javax.mail.Authenticator
    public PasswordAuthentication getPasswordAuthentication() {
    String username = SMTP_AUTH_USER;
    String password = SMTP_AUTH_PWD;
    return new PasswordAuthentication(username, password);

  • Animation performance with large images -- too large?

    I'm working with a client who created an animation using Edge Animate, and we're having some performance problems. The HTML page itself is 3840x1080, and the animation that is causing the most grief is a series of 304 PNGs, each 2592x1080 in size, showing at 10 fps.
    IE 10 is the required browser. When this animation runs, many of the frames are dropped, showing the X placeholder image instead. Additionally, there are pauses and stutters and such, presumably as the browser is trying to keep up. I note that when I go in and modify the animation() constructor to use maxFrames: 50 or so, the performance problems go away entirely. It seems like the preloading of all the frames is hitting a memory ceiling.
    Question: Is it even feasible to ask the browser to do this kind of work? I'm not a JavaScript/HTML guy, and if I had my druthers, this would be done using something like C++/DirectX.
    Any opinions here on optimizing, or approaching this problem differently?
    Many thanks,
    Dave

    Welcome to the family. You're coming into the fold at a bad time, sad to say.
    I'd be very interested to know more about your workflow, jc, scanner hardware, acquisition software, etc.
    Right now, I'd have to say Aperture is not a tool you even want to consider but I gotta give you my opinion: your catalog shouldn't point to the originals anyway. Do your conversions to a suitable format that will get you the versatility you need without overkill and then offload those huge originals (make at least two copies of your library) for permanent storage with one offsite.
    Folks around here speak highly of iView but I've never used it. Portfolio is a longtime favorite and I believe you can distribute copies of your catalog with a free Portfolio viewer (could be wrong about that). You certainly cannot do that with Aperture. Your catalog will use little JPEGs for thumbnails but you can make prints and slideshows from your more reasonably-sized assets like, say, 8 bit TIFFs at 6-14 megs.
    Hey, good luck and I hope you get better advice on a wider selection of products.
    bogiesan

  • Disc image too large

    Hi all,
    new to fourm.it is a great service.my question is that i am having some problems with skipping/freezing dvd discs. a few have come back from clients, not very good!! i understand about burn speeds and discs. so i am trying to burn a disc image to dvd 1hr 48mins to a single layer disc but the saved file from idvd is too big 5.3G. I thought that a movie umder 2hrs would fit on a single disc. I have just used a simple idvd project.I can burn it direct to disc and it will do it.
    Also can you delete the captured media once you have created a disc image?
    thanks all and best wishes
    g5   Mac OS X (10.4.6)  

    Hi Andy
    108 minutes is less than 120 minutes. Then You have to add the material You
    put into the building of the DVD menu.
    All included should be less than 120 minutes. No: Gb does not have ANY relevance
    for iDVD.
    But probably You have selected the wrong kind of Quality.
    - Best Performances = less than 60 min
    - Best Quality = less than 120 min.
    Backwards Yes but it's like this.
    Yours Bengt W

  • Images too large to fit my screen, windows overlap etc.

    One day I opened firefox to get my emails from the web and my icons suddenly became the size of silver dollars and I was able to view approximately a third of the image on screen without scrolling to view. If I open the print control window I couldn't activate because that part of the window was below screen and hidden.

    1. It looks like you're using a 2 year old version of Firefox that isn't supported any longer, you need to update it. http://www.mozilla.com/en-US/firefox/
    2. {Alt & F4} should close that window, <br />
    or <br />
    If you right-click that window on the Windows Task Bar (at the bottom of the screen), you could use the '''Close''' item.

  • Default UIPicker in UIWebView for html select drop down- too large font.

    Hi everyone,
    The default picker that is used for selecting options from html select tag (drop down) in a UIWebView is cutting off our data.
    I could use labels if it were not in a web view, but can't work out how to adjust the picker used in web view.
    The only way I can think is the detect selection using js, overide the picker with a custom picker and then send selection back to page. Seems complicated so i'm trying to find out if there is an easier/better way?
    The data is quite long so I do need to reduce font size. As there are quite a lot of options the drop down much more suitable to radio buttons for instance.
    I have noted the quick connect framework but seems like an overkill and this is an app that is already live so I don't really want to add a new framework just for an update.
    Any advice?

    Hi K T thanks for your reply
    In the first example of real data that I have used, it is cut off in both orientations. Only one of the options by one character of so but this forces a '...' to be added in the middle and it to be cut off even more.
    Ideally I would like to bring the font size down and make it two lines.
    Cheers

  • IPad Facebook images too large

    All the photos posted on my iPad Facebook newsfeed are magnified and cut off at the edges. I haven't been able to identify a solution.

    It's with the facebook app. Been that way since their update a few weeks ago.
    Right now I've been abandoning their app and just accessing the site via safari. You can get either the regular facebook app or the mobile site m.facebook.com
    there may also be third party facebooks apps out there that may work better.

  • How can I put my recently purchased iTunes movies on to my thumb drive and WD My Passport external hard drive. My Mac keeps saying "can't be copy because it is too large for the volumes format

    How can I put my recently purchased iTunes movies onto my thumb drive and WD my passport external hard drive.My Mac is saying that can't be copied because it is too large for volumes format

    [file] is too large for the volumes format
    That is usually an indication that the Volume was never Erased or Partitioned for GUID partition table and Mac OS, and is still in a Windows format.
    Mac OS X Extended (journaled) has no such file-size limitations

  • No able to view message in HTML format?

    I have a web server that uses GWIA to send email messages to the Internet and GroupWise users. When I read the message in GroupWise 7.03 HP1 client, I see a blank page. I have to do View > HTML format then I can see the content of this message. However, when I forward this message to others, it shows the blank format.
    However, the same email that goes to the Internet is sent as HTML format properly.
    I wonder if there is a switch on GWIA that will resolve the above. I only have /flatfwd enabled so far. I am not sure if /attachmsg will help because the same email sends out properly to other mail server.
    Anyone has any idea?
    Regards
    Che

    cche,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Error message when uploading book for printing. All images are jpg and rgb. Could they be too large to upload? What size is required and how do I reduce size in Aperture?

    I receive an error message when I upload my book for printing. Not sure what the problem is. All my images are jpg and rgb. Could they be too large as it takes about 15minutes to upload to Apple. How do I reduce the size of the image in Aperture?

    Hi Leonie,
    Thanks for your reply.
    Error message below. The preview is fine . I can discount the first 2messages as its a new computer so plenty of disk space and upload doesn't seem to be interrupted. I have uploaded to iphoto before. have tried to upload 3times with the same error message. I had to photo my slides with a Kaiser Baas photo maker , which apparently doesn't scan but takes photos in megapixels of the slides. I am wondering now if the format is incompatible though they are jpg files or the colour type wrong. The image files are  around 1-3 mb each and  72 ppi. I think  I will now scan them properly with a scanner to 300dpi anyway to improve quality.
    Apple  talks about image files not being too big for uploading but gives no sizing of what too big is?
    Error message
    1. Upload Error. Loss of connection or file corruption during order upload may cause an incomplete order. Resubmitting your order usually resolves this issue.
    2. Low Disk Space. If your computer is running on low disk space, your files may be assembled incorrectly. Create more space by deleting unused files.
    3. Unreadable PDF file or image files. Files are sometimes assembled incorrectly due to CMYK or Grayscale color space. Use the RGB color space for best results.

  • Cid: images displayed too large

    I get a daily ModusMail spam quarantine digest. It has the following in its CSS:
    .qtrMessageImageCell
    width: 25px;
    The HTML has entries like:
    <TD class="qtrMessageImageCell"><img src="cid:Phishing.gif@Category"></TD>
    The first time a cid: image is displayed it has the correct size. All later instances of that same image are about 10 times too large.
    Content-ID: Phishing.gif@Category
    Content-Type: image/gif
    Content-Transfer-Encoding: base64
    Content-Disposition: attachment
    R0lGODlhEAAQAMZLAEsYEGIhFGAhG20yJXw/MK8+KpNJOZ9LP7tGK7pGMr1VOItPRIRYV59L
    RJdRRJtbTotmZpZxcaRJQKRWRqFZTapUSLJcSK5gT7dnXKdrZb9wY7d4ccFFLspOO8ZQNMNU
    PdJEKdJFMdRWPNFgP8dfRsdfTMxcQdVXQ9ZeRtRdS8JhS89mTcNjU8ZtXstqU8tqWc5zXtJi
    TNpiStNkU9FvXtpiUNppUsZ6a81zZMp4ZtduYNJ3YtJ3aNN/beB7Y+N4aciDccmGec6Kd9qM
    feeCcKHfeWOe8aHgNiMg9arpP//f//////////////////////////////////////////
    /////////////////////////yH5BAEAAH8ALAAAAAAQABAAAAergH+Cg38EACuEhBENBwEC
    C0cciYI3GQOMDkgvCR2TEw1ADwxECQUgnZMVFj4LQ6UIIiaTEhALPj4hICIiKJMlBw0Ntx4n
    KDYziRgHJBYGPx8fKSYxky4sKixCRT4zKzM0iS4KHywbFhRIOjHUhDEiMkMvNC0tRUY1LoQa
    IylI9DgwcFwoQiTRiCI55MHgwaNHjyFJCKGI52IhDyCTBPko4mKHhoyEkgQBKSgQADs=
    Message was edited by: John Dalbec

    Our company really enjoys using the Muse product a lot and we are building our business online around it.  However, this image loading is a big problem for us.  With high resolution displays like Macbook Retina and Google Pixel it's important websites be crisp and high resolution.  While these machines are only a small portion of users online now it's a growing group and they are very affluent, influential, tech savvy and generally ahead of the curve. 
    Muse is uniquely positioned to help us cater to these high end clients and also serve smartphone users and lower bandwidth visitors, as mobile is a very important channel as well.  Muse should have an option that allows me to include the highest quality images I can find and then serve lower resolution images to visitors on phones or mobile connections, and higher resolution images to high speed connection users on advanced displays. 
    We build our whole website presuming Muse would optimize for this and our bounce rate is very high and load times are very slow right now.  Although we love the product this isn't just a bother, it's a mission critical problem that may cause us to abandon the product. 
    To be fair we inadvertently made this worse by going with a very visual "infographic" style site and we have high resolution screens so we're making it look sharp for us. 
    Now we're looking for ways to fix this quickly now without resizing dozens of images and also wondering how Muse handles this kind of rendering now and how that will change going forward? 
    Thanks! 
    Dave
    www.sendsmart.com
    Ps.  Would also be good if images loaded from top to bottom more and/or started out with lower resolution and graduated to higher resolution as I've seen on some sites (this may be browser)

Maybe you are looking for

  • OBIEE11g-Mobile App Designer Point Of View

    Dear All, Is it possible to keep dynamic Column selector in OBIEE Mobile App Designer as like Analytics ? Thanks in advance.

  • Drilldown option in Visual Composer Dashboard

    Hi I had a VC model based on BW Query and Output is Table view How can i  Drilldown option in the model... Like a Button "Division" ...initial display will be summurized at Sales Org level...once the Division button is selected.....the results should

  • Exporting for Web Streaming...

    Hello - what are the best specs to export a file for Web Streaming? My client gave me the specs of 640x320, and it's too stretched. Also, would it be in Sorenson? MPEG-4? Something else? Thanks so much!

  • Regarding Receiver proxy

    Hi Can any tell me why we use xi adapter when proxy is on receiver side?

  • After Slipstreaming Updates Acrobat Pro Extended shows "STANDARD" edition

    Hi to everyone. I slipstreamed all Adobe acrobat 9 Pro extended updates up to 9.3.3. it is showing  ' pro extended version' everywhere except when i click on the - help menu -> about acrobat 9 pro extended, and the pop up window shows - Adobe Acrobat