Gmail - yahoo - Web Design issue

Hi all,
I created a web page to send out as an email promo. From Mac safari, I sent (email this message) - which added the full web page in email. Looks fine in the client app, but when I send to a gmail or yahoo address - it looks fine in the cleint app but messed up when viewed on gmail/ yahoo in a browser. Mainly the background color is lost and some tables are misaligned...
Any idea how to fix this?

Thanks for the help,
This is an example. The table came directly from PS6 ( save as slices and html). it shows fine in a browser - but after sens as email and viewed in gmail browser the slices have spaces. I added green BK table color so it's easy to see...
here's test web page..
http://www.deboisproductions.com/try3/summer-2013.html
I just posted a simple version here - with no css - but will post another soon
** the main problem is that the table gets messes up so all the images are not perfectly aligned !
part of the issue is that PS6 adds a spacer to make the table like..
<img src="images2/images-summer-news/spacer.gif" width="1" height="45" alt="">
Q: maybe this is getting messed up?
example w broken table pics now with unwanted spaces (blue line should be solid not w black lines)
<html>
<head>
<title>test email</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<!-- Save for Web Slices (testdemo.psd) -->
<table width="601" height="1116" border="0" cellpadding="0" cellspacing="0" bgcolor="#99FF00" id="Table_01">
          <tr>
                    <td colspan="2">
                              <img src="images/summer-2013_01.png" width="600" height="381" alt=""></td>
                    <td>
                              <img src="images/spacer.gif" width="1" height="381" alt=""></td>
          </tr>
          <tr>
                    <td rowspan="2">
                              <img src="images/summer-2013_02.png" width="297" height="319" alt=""></td>
                    <td>
                              <img src="images/summer-2013_03.png" width="303" height="174" alt=""></td>
                    <td>
                              <img src="images/spacer.gif" width="1" height="174" alt=""></td>
          </tr>
          <tr>
                    <td rowspan="2">
                              <img src="images/summer-2013_04.png" width="303" height="190" alt=""></td>
                    <td>
                              <img src="images/spacer.gif" width="1" height="145" alt=""></td>
          </tr>
          <tr>
                    <td rowspan="2">
                              <img src="images/summer-2013_05.png" width="297" height="319" alt=""></td>
                    <td>
                              <img src="images/spacer.gif" width="1" height="45" alt=""></td>
          </tr>
          <tr>
                    <td>
                              <img src="images/summer-2013_06.png" width="303" height="274" alt=""></td>
                    <td>
                              <img src="images/spacer.gif" width="1" height="274" alt=""></td>
          </tr>
          <tr>
                    <td colspan="2">
                              <img src="images/summer-2013_07.png" width="600" height="97" alt=""></td>
                    <td>
                              <img src="images/spacer.gif" width="1" height="97" alt=""></td>
          </tr>
</table>
<!-- End Save for Web Slices -->
</body>
</html>
======== here is one with basic css on page ====
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Summer Blast Newsletter!!! - What's Happening at de Bois Entertainment</title>
<style type="text/css">
.white {
          color: #FFF;
a:link {
          color: #FC0;
a:visited {
          color: #FC0;
</style>
</head>
<body>
<table width="95%" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#000000">
  <tr>
    <td>
    </td>
    <td>
    <table width="601" height="1116" border="0" cellpadding="0" cellspacing="0" bgcolor="#000000" id="Table_01" align="center">
          <tr>
            <td colspan="2"><img src="images2/images-summer-news/LINKER2.png" width="600" height="40"></td>
            <td> </td>
  </tr>
          <tr>
                    <td colspan="2"><a href="index.php"><img src="images2/images-summer-news/summer-2013_01.png" width="600" height="381" alt=""></a></td>
                    <td>
                              <img src="images2/images-summer-news/spacer.gif" width="1" height="381" alt=""></td>
          </tr>
          <tr>
                    <td rowspan="2"><a href="newsongs.php"><img src="images2/images-summer-news/summer-2013_02.png" width="297" height="319" alt=""></a></td>
                    <td><a href="music_acts.php"><img src="images2/images-summer-news/summer-2013_03.png" width="303" height="174" alt=""></a></td>
                    <td>
                              <img src="images2/images-summer-news/spacer.gif" width="1" height="174" alt=""></td>
          </tr>
          <tr>
                    <td rowspan="2"><a href="video_debois_orchestra.php"><img src="images2/images-summer-news/summer-2013_04.png" width="303" height="190" alt=""></a></td>
                    <td>
                              <img src="images2/images-summer-news/spacer.gif" width="1" height="145" alt=""></td>
          </tr>
          <tr>
                    <td rowspan="2"><a href="index.php"><img src="images2/images-summer-news/summer-2013_05.png" width="297" height="319" alt=""></a></td>
                    <td>
                              <img src="images2/images-summer-news/spacer.gif" width="1" height="45" alt=""></td>
          </tr>
          <tr>
                    <td><a href="index.php"><img src="images2/images-summer-news/summer-2013_06.png" width="303" height="274" alt=""></a></td>
                    <td>
                              <img src="images2/images-summer-news/spacer.gif" width="1" height="274" alt=""></td>
          </tr>
          <tr>
                    <td colspan="2"><a href="index.php"><img src="images2/images-summer-news/summer-2013_07.png" width="600" height="97" alt=""></a></td>
                    <td>
                              <img src="images2/images-summer-news/spacer.gif" width="1" height="97" alt=""></td>
          </tr>
</table>
    </td>
    <td> </td>
  </tr>
   <tr>
    <td> </td>
   <td> </td>
    <td> </td>
  </tr>
  <tr>
    <td>
    </td>
    <td>
          <span class="white">
          <?php include('includes/foot1.php'); ?>
<?php include('includes/foot-02.php'); ?>
</span></td>
    <td> </td>
  </tr>
  <tr>
    <td> </td>
    <td> </td>
    <td> </td>
  </tr>
  <tr>
    <td> </td>
    <td> </td>
    <td> </td>
  </tr>
</table>
</body>
</html>

Similar Messages

  • I need help with Yahoo web mail issues - icons are missing.

    I need the link to install eWebMail Color and Graphics extension since all the icon in yahoo email for forward,delete, close...etc are disappeared.
    Can anybody help me in that.
    THANKS FOR ALL
    ''Title edited by a moderator''

    See:
    * http://kb.mozillazine.org/Website_colors_are_wrong
    * http://kb.mozillazine.org/Websites_look_wrong
    If images are missing then check that you aren't blocking images from some domains.
    See:
    * http://kb.mozillazine.org/Images_or_animations_do_not_load
    * Check the permissions for the domain in the current tab in Tools > Page Info > Permissions
    * Check that images are enabled: Tools > Options > Content: [X] Load images automatically
    * Check the exceptions in Tools > Options > Content: Load Images > Exceptions
    * Check the "Tools > Page Info > Media" tab for blocked images (scroll through all the images)
    There are also extensions (Tools > Add-ons > Extensions) that can block images.
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • A web service design issue with patterns

    Hello,
    I�d like to ask for your help in the following design issue:
    I need to create an email sending web service (with Axis). Only just one method which returns with an integer return code. This handles the following:
    - based on the given parameters gets the email addresses from an
    LDAP server (with netscape ldap for java)
    -     makes a cache from them (only after a timeout period will be the cache
    refreshed) (don�t know what tool to use for this)
    -     selects html templates which to be sent based on the given parameters
    -     sends emails with the appropriate templates (with Velocity)
    -     the whole process is logged (with log4j)
    I have to write the code as generic as possible. I know that some design pattern should be used for this. (some from GoF , and I know there exists design patterns specially created for web services as well).
    Could you enumerate me which patterns (and for what part of the program) would be the best choice to solve this problem? I have read through some books about patterns, but don�t have the knowledge to pick up the right one for a concrete problem like this..
    Thank you in advance,
    nagybaly

    Hello,
    I�d like to ask for your help in the following design
    issue:
    I need to create an email sending web service (with
    Axis). Only just one method which returns with an
    integer return code. This handles the following:Lots of responsibilities here. You would do well to break this up into several classes that you can test separately.
    I would also advise that you not embed all this in a servlet. Make a service that collaborates with several objects to accomplish the task and let the serlvet just call it.
    .> - based on the given parameters gets the email
    addresses from an
    LDAP server (with netscape ldap for java)I'd recommend Spring's LDAP module. Pretty terrific stuff.
    cache from them (only after a timeout period will be
    the cache
    refreshed) (don�t know what tool to use for
    this)Maybe EhCache or OsCache or something like that.
    -     selects html templates which to be sent based on
    the given parametersWhere does this come from? Certainly not the LDAP. A relational database? Write a DAO for the document template.
    -     sends emails with the appropriate templates (with
    Velocity)Have an e-mail sender service using Java Mail.
    -     the whole process is logged (with log4j)Easily done.
    I have to write the code as generic as possible. I
    know that some design pattern should be used for
    this. No pattern. There might be patterns, if you say that the DAOs to access the LDAP and RDB are patterns.
    Stop thinking patterns and start thinking objects.
    (some from GoF , and I know there exists design
    patterns specially created for web services as
    well).Nope.
    Could you enumerate me which patterns (and for what
    part of the program) would be the best choice to
    solve this problem? I have read through some books
    about patterns, but don�t have the knowledge to pick
    up the right one for a concrete problem like this..
    Thank you in advance,
    nagybalyYou haven't read them because they aren't there. Your problem is pretty specific, even if it's common.
    %

  • How can I show unread mail count of Gmail,Yahoo,AOL in my web application.

    I want to show unread mail count for Gmail,Yahoo,AOL,MSN (e.g. Gmail (5) ) on my web application. Also when user click on unread mail count it should open new window for respective mail Inbox say gmail inbox that shows unread mail of user.
    I have exercised on jgmail source code & it has used HttpClient API to login into gmail and access services of gmail but I am not able to execute it successfully.
    what are the options for above questions?
    Thanks In Advance
    Ankit Patel
    Edited by: ankit.patel on Aug 14, 2008 7:10 AM

    JavaMail supports two standard protocols for reading mail POP3 and IMAP.
    As explained in the JavaMail FAQ (you found it, right?), the POP3 protocol
    doesn't provide information on unread messages.
    As far as I know, only Gmail supports IMAP. I don't believe either AOL or MSN
    support even POP3, but I'm not sure.

  • Cannot copy images into web email (gmail, yahoo).

    I can't paste images into the body of an email in web-based email accounts (gmail, yahoo). Since I can do it using IE, I was wondering if it can be done while using Firefox.

    Try this proven Method
    to get images visible in
    the body of your sent emails
    [http://imgmail.info IMGMAIL]

  • I had an issue running Bridge CS6 on my laptop yesterday and after failing to troubleshoot I un-installed it from my system but have yet to find any way to download/reinstall it. I have web design premium and tried uninstalling/reinstalling photoshop and

    I had an issue running Bridge CS6 on my laptop yesterday and after failing to troubleshoot I un-installed it from my system but have yet to find any way to download/reinstall it. I have web design premium and tried uninstalling/reinstalling photoshop and illutsrator as I'd seen bridge was coupled with those but had no luck. Is it possible to download bridge as a stand alone with a web design premium license for cs6

    restart your design premium installation, select custom install and you should see options to pick which programs you want to install.
    tick bridge and install

  • What kind of job can I get being a Web Designer/Graphic Designer?

    I run BlackReefDesigns.com, and am doing quite a bit of
    business consider I don't really advertise too much. I've learned
    how to do eCommerce, Flash, etc and things are progressing nicely.
    I feel confident in my skills, and I realize that anything I
    don't know how to do, I can learn rather quickly. The problem is I
    feel I need to become more of a 'business man' if I want my company
    to really move forward. I'm only 23 years old so I was thinking of
    going and working for a Web/Graphic design firm so I can learn more
    about the business aspect of running my own company. Im also
    working towards a B.A. in Graphic Design at a larger University in
    Southern California...
    Just curious, with my skillset, how much money could I, or
    should I be making if I went and worked for someone else? Do you
    guys know anybody in Southern California that I could work for?
    thanks in advance

    eh, teachers don't always know what they're talking about. in
    fact, i
    think a lot of the posts made here are a direct result of
    poor teaching.
    i know that's how i got a lot of my bad habits (not from a
    teacher,
    per se, but my first boss who taught me some basics) a lot of
    people
    think they know the dos and don'ts but really don't (plus,
    they tend to
    change). i thought i knew a lot of stuff until i started
    coming here and
    learned that a lot of what i thought was the right way to do
    things
    actually wasn't.
    come here often. and listen to what these people say because
    they know
    their stuff (you'll quickly figure out who the ones are that
    know what
    they're talking about). i can't tell you how much i've
    learned in the
    relatively short time i've been a part of this forum. and i'm
    still
    learning!
    teach yourself html. you don't have to be able to write an
    entire site
    by hand, but at least be able to look at the code and
    understand what it
    means. like others said, you seem to have a good grasp of
    graphic
    design, but websites have to be more than graphics.
    to answer your money question, it really kind of depends on
    the market
    where you live. you might just want to look in the want ads
    and see what
    kind of salaries are being offered for this type of work in
    your town.
    there's also resources on the web where you can see average
    salaries for
    various jobs in different places. yahoo has one
    http://hotjobs.yahoo.com/salary)
    but there are lots of others if you
    search for something like "compare my salary."
    good luck! you seem willing to learn, which is great!
    JSloanSDRE wrote:
    > JoeyD -
    >
    > I really appreciate your input. I wish more people would
    be critical of my
    > work. I can't ever progress when people say 'good job,
    looks great'.
    >
    > I've learned everything myself when it comes to web
    design, and it sucks
    > because I wish I could have had a teacher to teach me
    the do's and don'ts as I
    > think I would have progressed much farther over the last
    couple of years.
    >
    > I have been busy working on client work and haven't
    updated my personal
    > website in awhile (which I realize is a big no-no if I
    want future business)
    > but there is really no excuse for the padding issue. I
    actually just fixed it
    > right now.
    >
    > Again, thanks for the input, and I realize I have a
    loooong way to go in Web
    > Design, and that is why I want to get a job somewhere so
    I can learn and work
    > at the same time. I think however I am proficient in
    Graphic Design and am
    > curious as to how much income I would have working for a
    firm as oppose to
    > freelancing (just in Graphic Designs)
    >
    > thanks again JoeyD, and any future advice would be great
    >

  • Keyboard not working in Google Web Designer

    I just installed google web designer from AUR. ( https://aur.archlinux.org/packages/google-webdesigner/ )
    And I have the weirdest problem, the keyboard seems to stop working in the program somehow the keyboard does work after launch, but it seems to stop working after I use the mouse or something similar.
    As an example, after launch I can press Ctrl+N for "new file" and then press tab until I get to the name field, and type all I want.
    I can repeat this, press Ctrl+N and then click the name field, and the keyboard stops working. I can then close the window and press Ctrl+N again, but this time the window won't open (i.e. keyboard input is completely dead to the program). Below is all the terminal output I get when I launch the program, by the looks of it nothing seems suspicious in relation to this issue.
    $ google-webdesigner
    [0331/215852:ERROR:browser_main_loop.cc(161)] Running without the SUID sandbox! See https://code.google.com/p/chromium/wiki/LinuxSUIDSandboxDevelopment for more information on developing with the sandbox on.
    which: no google-chrome in (/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl)
    which: no firefox in (/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl)
    which: no opera in (/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl)
    [0331/215853:ERROR:renderer_main.cc(227)] Running without renderer sandbox
    Does this happen to anybody else? Anyone got a clue what might be up?
    My Desktop environment is a pretty basic LXDE setup, and my keyboard is Razer Blackwidow, Mouse is a basic 5 button logitech mouse, I've never had any problems whatsoever with it.I am running on the evdev input driver (latest version of libinput crashes xorg if this keyboard is present and I try to use it) I have confirmed however that this issue is not specific to my keyboard (I tried another generic keyboard, it gave the same results)
    Last edited by rabcor (2015-03-31 22:24:46)

    Hello, I am maintaner of the AUR package, I tried right now, and I dont have any described problems you have. And honestly I have no idea how to help you.
    I have tested GWD under Xfce4.12 and Openbox, and no issues, like this.
    You may try here https://groups.google.com/forum/#!forum/gwdbeta to get to the bottom of it, if no luck here.
    Last edited by jvb (2015-04-01 06:50:26)

  • Problem Installing Adobe CS 5.5 Web Design Premium, Error Code 6

    I just purchased Adobe CS 5.5 Web Design Premium.  I've attempted installing it about a half dozen times now, maybe more.  I am getting variations of "Error Code 6".
    I have been through steps 1-3 of this page: http://helpx.adobe.com/creative-suite/kb/errors-exit-code-6-exit.html but it hasn't helped (the error log is slightly different, but that's about it).
    I have attempted to look at the descriptions, but many of the errors in my log summary were not on the list of errors here: http://helpx.adobe.com/x-productkb/global/installation-launch-log-errors-creative.html - however of the ones that were, I found this entry:
    DF012 Installation source path does not exist: <path>
    The installation files are corrupted.
    Reextract or copy the contents of the installer.
    Which is discouraging and confusing to me, as I have tried installation both from my new, just opened CDs and by downloading the installation files from here: http://prodesigntools.com/adobe-cs5-5-direct-download-links.html.
    I'm not sure what my next step should be to try.
    Here's the log information (I deleted a lot of the space between lines (paragraph marks), if that is somehow important, I can paste it here without conserving space):
    Exit Code: 6
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 4 error(s), 8 warning(s)
    ----------- Payload: {CFA46C39-C539-4BE9-9364-495003C714AD} Adobe SwitchBoard 2.0 2.0.0.0 -----------
    WARNING: DF029: ARKServiceControl::StartService: Service not started/stopped SwitchBoard. Current State: 0 Exit Code: 0 Service Specific Exit Code: 0(Seq 1)
    ----------- Payload: {2EE4F060-CEE6-4002-AA8B-91B791541767} Pixel Bender Toolkit 2.6.0.0 -----------
    WARNING: DF035: CreateAlias:Icon file does not exist at C:\Program Files (x86)\Adobe\Adobe Utilities - CS5.5\Pixel Bender Toolkit 2.6\windows\pb_app.icofile:\\\C:\PIXELB~1\source\winwood\Staging    0X1.AE9C02P-1022rea\windows\pb_app.ico42178f80493091e8e552c84a2897e9da68fce32_32_f8049309 1e8e552c84a2897e9da68fce for icon C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Adobe Web Premium CS5.5\Adobe Pixel Bender Toolkit 2.6.lnk with target C:\Program Files (x86)\Adobe\Adobe Utilities - CS5.5\Pixel Bender Toolkit 2.6\Pixel Bender Toolkit.exe(Seq 89)
    ----------- Payload: {7202D4A7-F7E6-4e7a-B77D-7B1C4E8B5CA6} Adobe Flash Player 10 ActiveX 10.0.0.0 -----------
    ERROR: Error 1722.There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. Action NewCustomAction1, location: C:\Users\jlp\AppData\Local\Temp\InstallAX.exe, command: -install activex -msi
    ERROR: Install MSI payload failed with error: 1603 - Fatal error during installation.
    MSI Error message: Error 1722.There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. Action NewCustomAction1, location: C:\Users\jlp\AppData\Local\Temp\InstallAX.exe, command: -install activex -msi
    ----------- Payload: {47CE893F-A0FF-4094-AA16-5209AEA7C7E0} Firefox Plugin CS5.1 6.1.0.0 -----------
    WARNING: DF012: File/Folder does not exist at E:\Adobe CS5_5\payloads\AdobeContribute6.1-FFPlugin\OEM(Seq 32)
    ----------- Payload: {208DE3D5-541C-41B0-8595-7A608A6E4306} IE Plugin CS5.1 6.1.0.0 -----------
    WARNING: DF012: File/Folder does not exist at E:\Adobe CS5_5\payloads\AdobeContribute6.1-IEPlugin\OEM(Seq 26)
    ----------- Payload: {4A4F91EA-5951-4C5C-B911-027D802817EB} Office Plugin CS5.1 6.1.0.0 -----------
    WARNING: DF012: File/Folder does not exist at E:\Adobe CS5_5\payloads\AdobeContribute6.1-OfficePlugin\OEM(Seq 34)
    ----------- Payload: {DD309051-FACF-4A5E-87F1-C57154BB3DE8} Adobe Contribute CS5.1 6.1.0.0 -----------
    WARNING: DF012: File/Folder does not exist at E:\Adobe CS5_5\payloads\AdobeContribute6.1-mul\OEM(Seq 8283)
    ----------- Payload: {8DADF070-FE60-4899-8EF0-4242E7702F7D} Adobe Fireworks CS5.1 11.1.0.0 -----------
    WARNING: DF012: File/Folder does not exist at E:\Adobe CS5_5\payloads\AdobeFireworks11.1.0All\OEM(Seq 1215)
    ----------- Payload: {1C9D6B02-8B92-4E40-8B22-37D8C95430F0} Adobe Fireworks CS5.1_AdobeFireworks11.1.0en_USLanguagePack 11.1.0.0 -----------
    WARNING: DF012: File/Folder does not exist at E:\Adobe CS5_5\payloads\AdobeFireworks11.1.0en_USLanguagePack\OEM(Seq 74)
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe Flash Player 10 ActiveX: Install failed
    Note: references to Drive E are reference to my CD/DVD Drive.  I am installing to my C drive and also have a 2nd hard disk D, which shouldn't be involved in the installation.
    Also, this is a student edition, but as I've verified myself with Adobe and received my licence key, that shouldn't cause problems as far as I can tell.
    My computer is running Windows 7 64-bit.  Not sure if there's any other information that is useful in solving this issue.
    Thanks for your help!

    _Forge_ there a couple different technical documents relevant to the errors you are currently experiencing.  I would recommend reviewing Error "1721 [or 1722]: There is a problem with this...package" when installing | CS4 | Windows - http://helpx.adobe.com/creative-suite/kb/error-1721-or-1722-problem.html and Error 1603 | Install | CS5 products - http://helpx.adobe.com/creative-suite/kb/error-1603-install-cs5-products.html.

  • Emails sent through Mail 7.0 on Mac won't appear in the Sent folder in the Yahoo web browser or the Mail app for iPad.

    It seems that emails I send via Mail on my mac are stored only in Mail's Sent folder. These emails don't appear in the sent folder of Yahoo web browser, iPad Mail app, or the Y! Mail android app..
    I've tested to see whether my emails are actually sending properly, and they are. I just want to know why the Sent messages on my mac aren't appearing anywhere else. I've read similar issues to this but haven't yet found a reason or solution.
    Thanks in advance

    [edit] I dragged the email I sent through the MBP Mail app (under MAILBOXES > Sent > Yahoo!) to the highlighted Sent folder (YAHOO! > Sent), and now it shows up on all Yahoo Sent folders (iPad app, web browser, phone app). Not entirely solved the issue but will use web browser to sent future emails to keep everything in sync.

  • I can't play Pinochle on Yahoo web site

    I recently updated Firefox and I can no longer play pinochle on Yahoo web site.
    == URL of affected sites ==
    http://Yahoo.com

    Hello Frederick.
    You may be having a problem with your Flash plugin. Still, try a new (temporary) Firefox profile ([http://support.mozilla.com/en-US/kb/Managing+profiles managing profiles]) and see if it has the same issue. If it doesn't, it's possible that you are having a problem with some Firefox add-on that is hindering Flash's normal behavior. Have you tried disabling all add-ons (except Shockwave Flash), to see if it goes back to normal?
    Whenever you have a problem with Firefox, whatever it is, you should make sure it's not caused by one (or more than one) of your installed add-ons, be it an extension, a theme or a plugin. To do that easily and cleanly, run Firefox in [http://support.mozilla.com/en-US/kb/Safe+Mode safe mode] (don't forget to select ''Disable all add-ons'' when you start safe mode). If the problem disappears, you know it's from an add-on. Disable them all in normal mode, and enable them one at a time until you find the source of the problem. See [http://support.mozilla.com/en-US/kb/Troubleshooting+extensions+and+themes this article] for information about troubleshooting extensions and themes and [https://support.mozilla.com/en-US/kb/Troubleshooting+plugins this one] for plugins.
    If you need support for one of your add-ons, you'll have to contact its author.
    If the problem is not disappears when all add-ons are disabled, please tell me, so we can work from there.
    If the new profile has the same problem, it's a problem with Flash and you need to contact Adobe for support, since they are the ones who develop it.

  • SOA Design issues and other politics

    Hi all,
    I have a requirement for live data feed from external system. I am using SOA11g and JDeveloper 11g. There are two designs, one proposed and other I have in mind to achieve this.
    1) The external system sends XML data in a push model to the exposed SOA Web Service (uses one-way messaging mode) at my end. I then store the message in the database
    a) In this design how do we keep track of all messages that are sent are received. Is there a better solution.
    2) The third party is proposing a Web Service at their end. The application being real-time (i.e any changes at their DB end i.e some DB tables, should be propogated across to our web services using XML messages). I will have to keep sending XML requests on a regular basis (say every 5 seconds). Can I achieve such type of Web Service client using SOA 11g?
    a) Here I have a design issue, that the data feed is live, why do the WS client have to keep sending requests at regular intervals. Why can't the third party send data whenever there is an update/insert at their database end. Third party is coming up with advantages like loose coupling and making the Web Service more generic. I doubt all the claims give that the applications are B2B and we are the other ones who will be using their web services for the time being. Their may be other two organizations later on.
    b) If the first request is not yet returned, will the second request after 5 seconds be blocked.
    This designs and solutions are becoming quite political across organizations, and got to do with who will take the blame for data issues. I just want a proper SOA design for live data feed. Please suggest the advantages and disadvantages of both if anybody has been through this path.
    Thanks
    Edited by: user5108636 on 1/09/2010 18:19

    See if wireless isolation is enabled.
    When logged into your WRT1900AC using local access replace the end of the browser URL with:
    /dynamic/advanced-wireless.html
    Please remember to Kudo those that help you.
    Linksys
    Communities Technical Support

  • New to dreamweaver, complex web design.

    hello, I'm a sports science student with a passion for helping people. I always get asked questions from novice gym users who don't know where or how to start. I'd like to create a website that allows them to find all they need to know In one place with all scientifically studied results and articles about supplements training etc. But also that based on a number of variables will give them a program to follow, free of charge. I downloaded dreamweaver and am at a loss about how to use it, I am very tech savi but not with web design.
    I Have thought through a design.
    The home/welcome page will be plain and simple with a introductory paragraph with a button saying 'get started' or a button saying 'I've already started' one will take them to a page that has variables such as height, weight, age, body fat, goals and experience, and through this information spit out a program, I know how to use all variables to create a routine (with my formula ofcourse) and obviously the other button will lead to there already created program.  The program itself will allow for a befire photo and constant recent photoa to be uploaded, also a table for day to day weigh ins and progress check on weight lifted in the gym. On the far right of the page I want to have a seperate scroll down bar with titles of various articles about different areas of fitness.
    I Know this seems like a lot but i have the contacts to get users on to the site but I need good design to keep them there. Is all of this possible on dreamweaver?
    THank ink you for any help

    When you use a complex web site there are several parts to it
    - the HTML which controls the layout and the text
    - the pictures (which can only be changed by the web designer, nobody else)
    - the JavaScript, which can do certain things but cannot make permanent changes
    - the web server, which will run scripts (programs) to do things
    It is the web server which will run software to create programs, allow upload of pictures, remember status etc.
    This is written by an experienced web programmer, who must be experienced in all the latest security issues. IT MUST NOT BE DONE BY A BEGINNER OR AMATEUR. I say this with pain because it used to be a great way to learn. But no longer, because the bad guys know all the tricks, and if a beginner does it, in no time at all, you will have porn hosted in your web site, it will be secretly sending spam, and all the personal information will be stolen. If you are in the EU, this last is particularly serious as you have an absolute responsibility to protect personal information, and there are unlimited fines.

  • SiteGrinder (PS plug-in) web design question answered

    Over at http://www.adobeforums.com/webx?128@@.59b4e1c9 we've been discussing SiteGrinder, the PS plug-in which converts Photoshop designs to working websites.
    One of the posters had concerns about the SG coding. (I don't know if he's used the plug-in.) He pointed out that on their users' sample sites at http://www.medialab.com/sitegrinder , if you enlarge the text with cmd-+, everything gets crowded and overlaps. I noted that this is a common problem with most/all sites, regardless of their origins. He responded:
    >It's common -- far too common -- but not inevitable. It's bound to happen with SG, though, because they carve up the layout into fixed size chunks and then use absolute positioning, so there's no way for the containers to accommodate changes in font size except by crashing into each other, or growing scroll bars, which is only sometimes going to work. For the same reason -- starting with a single Photoshop image -- they can't identify headings or lists, so the pages aren't properly accessible to some assistive technology. If you don't care about accessibility, you should realize that this also means that they become hard or impossible for search engines to analyze, so people aren't going to find your site so easily.
    I've only just downloaded the SiteGrinder demo, so I couldn't confirm or deny this, so I sent it along to the developer at MediaLab, who replied overnight on a weekend. He says:
    >The criticisms are partly true. SiteGrinder uses something called "absolute" positioning as its default. This means that if the text size is increased and the text has been divided into several closely packed layers that after resizing the text may overlap.
    >But, while this is the default SiteGrinder positioning behavior, it is not the only option. SiteGrinder supports relative positioning through use of a -grow layer. Content in a grow layer (and the footer below it) won't suffer this problem.
    >Also, no website is fully resize resistant to any amount of text size increase. The normal expectation is that a site should accommodate two levels of font size changes in either direction. This can also be accomplished by simply keeping text layers away from each other so they don't crowd one another.
    >SiteGrinder does a lot of unseen work for supporting accessibility. It always outputs the content in read order, puts title attributes on graphic buttons, doesn't clutter the HTML with IMG tag graphics ( CSS should be used for design graphics, and that's the SG default - semantically important image layers can be noted as such with the -img hint), properly sets the alt attribute when img tags are used and never puts empty alt="" attributes into the HTML (if you are doing that you should be using CSS for the graphic, not an IMG tag). Also, text -menu layers are nicely converted to UL-LI constructs for you - very important for search engines and accessibility.
    >However, SiteGrinder does not yet support header tags, simply because there is no simple way to designate them from Photoshop. However, of all the changes one might want to do downstream, those are by far the easiest. It is our goal for SiteGrinder to one day support header tags in an elegant and seamless way, but I personally don't see their current absence as a big drawback. Why would someone who hand codes HTML be upset if a helper tool didn't put in header tags for them? Hope this helps, Chris
    >P.S. SiteGrinder has advanced features for importing HTML, inserting HTML directly into a Photoshop layer, as well as adjusting the HEAD portion of a page. Our more savvy users have no trouble getting header tags into their SiteGrinder builds. And others just put them in downstream.
    This is mostly Greek to me (and fortunately SG users don't need to understand most of it, as it happens behind the plug-in scenes) but I'd be interested to hear what other html-savvy folks think.

    MediaLab's response is encouraging. It shows that they are aware of the issues and try to do something about it. It suggests though that you won't just be able to go with all the defaults, and you aren't going to understand the options unless you find out something about what's going on behind the scenes, which is really all I've been suggesting you should do. The choice of tools is up to you, if they're capable of doing the job. I will persist in believing that starting from a PSD image is not the right way to go, but I won't argue the point with anyone.
    Best of luck starting out in Web design. Watch out for Internet Explorer 6.

  • I am not able to synchronize my iCloud mail in mailbox but gmail, yahoo, hotmail all works well. Upon I add iCloud it is showing server missing / error in server.

    I am not able to synchronize my iCloud mail in mailbox but gmail, yahoo, hotmail all works well. Upon I add iCloud it is showing server missing / error in server.

    Hello vijaymanoj,
    Thank you for the details of the issue you are experiencing with your iCloud email account.  I recommend reviewing the sections titled "If you can't send mail in OS X Mail" and "If you can't receive mail in OS X Mail" in the following article:
    iCloud: Troubleshooting iCloud Mail
    http://support.apple.com/kb/ts4002
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

Maybe you are looking for