Why does safari not show my websites SVG images and every other browser it is fine ?

I am a web developer and the way apple has developed there safari is driving everyone mad
SVG images will work on every other web browser but wont show up in safari
it is a html website and need to sort this issue out asap have anyone else had the same issue with safari

I wanted to make it clear that I am not talking about the publically accessible Amazon Store but the Amazon Web Store which is used for those who have an online shop or set up e-commerce.
The fact that Amazon is a large company does not protect it from making a crappy site. If its e-commerce pages don't work in Safari, that's laziness on the part of their web developers, pure and simple. There's no reason for a modern web site to fail to work in any standards-compliant web browser. This is something you'll need to address with Amazon.

Similar Messages

  • Put movies in itunes on one computer why does it not show up when i access itunes from other computers or ipad2?

    put movies in itunes on one computer why does it not show up when i access itunes from other computers or ipad2?

    i just purchased a file that had videos in it. i put them in the itunes library on my pc where i first downloaded them. i was able to transfer them to my other pc, a laptop, through my home network. i am now trying to get them on my mac pro desktop and my ipad2. my mac pro can see the other computers on my home network but i cannot get it to connect to them. i know the operating systems are different but was hoping i could transfer pictures and files from pc to mac this way. haven't been able to get it to work yet. the videos i am trying to get my mac to see came in a folder with both mac and pc versions. i thought if i got the videos i purchased into itunes that i would then be able to get them to my mac pro and my ipad2. i am new to mac/apple and have always been pc-centric so trying to marry it all has been difficult. i speak pc pretty well but am just learning apple. am i trying to do things that are not possible? i sure could use a knowledgable friendly soul to walk me through my issues of having pc and mac on the same network. i have been able to get all computers and ipad to print on my network. thanks.

  • Why does Safari not open some youtube sites?

    Why does Safari not open some links I'm sent via e-mail?

    Why does Safari not open some links I'm sent via e-mail?

  • Why does safari not save my passwords anymore? I have to keep signing into everything. Can anyone help or explain?

    Why does safari not save my passwords anymore? I have to keep signing into everything. Can anyone help or explain?

    Check here: Settings > Safari > Private Broswing > Be sure this is stiwtched OFF.
    And check at AutoFill.

  • Why does Safari not respond after loading OSX Mavericks on a MacBook air

    Why does Safari not respond after loading OSX Mavericks on a MacBook air?

    What exactly happens? Does it launch at all? Have you tried rebooting?

  • Lightroom 5 is not showing previous sucessfuly imported images and images are not identified as missing, there are no images shown in the library, how do  I reconnect missing images?

    lightroom 5 is not showing previous successfully imported images and images are not identified as missing, there are no images shown in the library, how do  I reconnect missing images?

    If the images are not identified as missing ... then you can't reconnect them
    But I'm not really sure what is happening, as I don't understand your description of the problem, could you show us a screen capture? Or describe what appears on your screen in much more detail...

  • Why does is not show the radio buttons

    I want to display the buttons in a row then radio button in a row under the button and then log scroll pane under the radio buttons. This is my code:
            //Add the buttons and the log to this panel.
            add(buttonPanel, BorderLayout.PAGE_START);
            add(radioPanel, BorderLayout.CENTER);
            add(logScrollPane, BorderLayout.CENTER);When i run it it display the buttons and the logsrollpane. Why does it not display the radio buttons?

    Thanks guys.
    This is my problem. We have a big system that produce lots of log files and the software testers have to manually have to go through the logs file and look for a certain XML tags in the log file.
    What I want to do is help the software testers my developing a small tool that will allow them to open a log file and then click on a radio button corresponding to a xml tags that they are looking for and automatically highlight the tags in the file in yellow color .
    I am not sure how feasible this is and I am stuck.
    This is what I have done so far.
    Can you please guys help me go forward.
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.filechooser.*;
    public class FileChooserDemo extends JPanel
                                 implements ActionListener {
        static private final String newline = "\n";
        JButton openButton;
        JButton clearButton;
        JTextArea log;
        JFileChooser fc;
        // Radio Buttons
        static String em01 = "EM01";
        static String em07 = "EM07";
        /*static String dogString = "Dog";
        static String rabbitString = "Rabbit";
        static String pigString = "Pig";*/
        public FileChooserDemo() {
            super(new BorderLayout());
            //Create the radio buttons.
            JRadioButton em01Button = new JRadioButton(em01);
            em01Button.setMnemonic(KeyEvent.VK_B);
            em01Button.setActionCommand(em01);
            em01Button.setSelected(true);
            JRadioButton em07Button = new JRadioButton(em07);
            em07Button.setMnemonic(KeyEvent.VK_C);
            em07Button.setActionCommand(em07);
            //Group the radio buttons.
            ButtonGroup group = new ButtonGroup();
            group.add(em01Button);
            group.add(em07Button);
            //Register a listener for the radio buttons.
            em01Button.addActionListener(this);
            em07Button.addActionListener(this);
            //Put the radio buttons in a column in a panel.
            JPanel radioPanel = new JPanel(new GridLayout(0, 1));
            radioPanel.add(em01Button);
            radioPanel.add(em07Button);       
            //Create the log first, because the action listeners
            //need to refer to it.
            log = new JTextArea(40,60);
            log.setMargin(new Insets(5,5,5,5));
            log.setEditable(false);
            JScrollPane logScrollPane = new JScrollPane(log);
            //Create a file chooser
            fc = new JFileChooser();
            //Uncomment one of the following lines to try a different
            //file selection mode.  The first allows just directories
            //to be selected (and, at least in the Java look and feel,
            //shown).  The second allows both files and directories
            //to be selected.  If you leave these lines commented out,
            //then the default mode (FILES_ONLY) will be used.
            //fc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
            //fc.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
            //Create the open button.  We use the image from the JLF
            //Graphics Repository (but we extracted it from the jar).
            openButton = new JButton("Open File");
            openButton.addActionListener(this);
            //Create the save button.  We use the image from the JLF
            //Graphics Repository (but we extracted it from the jar).
            clearButton = new JButton("Clear Text Area");
            clearButton.addActionListener(this);
            //For layout purposes, put the buttons in a separate panel
            JPanel buttonPanel = new JPanel(); //use FlowLayout
            buttonPanel.add(openButton);
            buttonPanel.add(clearButton);
            //Add the buttons and the log to this panel.
            add(buttonPanel, BorderLayout.PAGE_START);
            add(radioPanel, BorderLayout.LINE_START);
            add(logScrollPane, BorderLayout.CENTER);
        public void actionPerformed(ActionEvent e) {
            //Handle open button action.
            if (e.getSource() == openButton) {
                int returnVal = fc.showOpenDialog(FileChooserDemo.this);
                if (returnVal == JFileChooser.APPROVE_OPTION) {
                     log.setText("");
                    File file = fc.getSelectedFile();
                    try{
                         BufferedReader in = new BufferedReader(new FileReader(file));
                             String data;
                             while ((data = in.readLine()) != null) {
                                  log.append(data + newline);
                    }catch(IOException ioe){
                log.setCaretPosition(log.getDocument().getLength());
            //Handle save button action.
            }else if (e.getSource() == clearButton) {
                  log.setText("");
         * Create the GUI and show it.  For thread safety,
         * this method should be invoked from the
         * event-dispatching thread.
        private static void createAndShowGUI() {
            //Create and set up the window.
            JFrame frame = new JFrame("PROGRESS Message Viewer");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Create and set up the content pane.
            JComponent newContentPane = new FileChooserDemo();
            newContentPane.setOpaque(true); //content panes must be opaque
            frame.setContentPane(newContentPane);
            //Display the window.
            frame.pack();
            frame.setVisible(true);
        public static void main(String[] args) {
            //Schedule a job for the event-dispatching thread:
            //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
    }

  • Slices NOT working in Internet Explorer -- but work every other browser!

    I've spent all day trying to figure this out and hope someone experienced here can help me out.
    I've created a left menu for my website using slices (in photoshop cs2). Everything seems to work fine - I upload the date folder and html file to my server, etc. However, when I load that page in IE (any version), it loads really slowly and then shows "x" boxes for the last several slice images.
    It works perfectly in every other browser (FF, Opera, Safari, etc). What could the cause possibly be? I've just reformatted my computer so I doubt it's internal. Strangely, it works fine on some computers with IE, but not others.
    Any help most appreciated!
    thanks

    My wild guess will be a browser cache issue. Hold down the Shift key while clicking the Refresh button and see if that helps. If it doesn't we'll definitely need a link.

  • The firefox icon shows on my desk top and in my task bar, but why does it NOT show in my list of Program files?

    My Firefox icons are showing and usable from the desktop and from the task bar; however, the Mozilla Firefox does not show in my list of program files. Why doesn't it show?

    Hello,
    Certain Firefox problems can be solved by performing a ''Clean reinstall''. This means you remove Firefox program files and then reinstall Firefox. Please follow these steps:
    '''Note:''' You might want to print these steps or view them in another browser.
    #Download the latest Desktop version of Firefox from http://www.mozilla.org and save the setup file to your computer.
    #After the download finishes, close all Firefox windows (click Exit from the Firefox or File menu).
    #Delete the Firefox installation folder, which is located in one of these locations, by default:
    #*'''Windows:'''
    #**C:\Program Files\Mozilla Firefox
    #**C:\Program Files (x86)\Mozilla Firefox
    #*'''Mac:''' Delete Firefox from the Applications folder.
    #*'''Linux:''' If you installed Firefox with the distro-based package manager, you should use the same way to uninstall it - see [[Installing Firefox on Linux]]. If you downloaded and installed the binary package from the [http://www.mozilla.org/firefox#desktop Firefox download page], simply remove the folder ''firefox'' in your home directory.
    #Now, go ahead and reinstall Firefox:
    ##Double-click the downloaded installation file and go through the steps of the installation wizard.
    ##Once the wizard is finished, choose to directly open Firefox after clicking the Finish button.
    More information about reinstalling Firefox can be found [https://support.mozilla.org/en-US/kb/troubleshoot-and-diagnose-firefox-problems?esab=a&s=troubleshooting&r=3&as=s#w_5-reinstall-firefox here].
    <b>WARNING:</b> Do not run Firefox's uninstaller or use a third party remover as part of this process, because that could permanently delete your Firefox data, including but not limited to, extensions, cache, cookies, bookmarks, personal settings and saved passwords. <u>These cannot be recovered unless they have been backed up to an external device!</u>
    Please report back to see if this helped you!
    Thank you.

  • Why does Safari not automatically open in full screen mode?

    In Yosemite, if I'm in full screen mode, then I close my browser (completely quitting, not just closing the window), then re-open Safari, I am not in full screen mode. The browser corners are pulled to the maximum screen size but I am not in full screen mode.
    Does anyone know a solution to this? Is this a bug or a "feature?"
    Thanks,
    Mason

    I have never used Span before, but inspired by your post, I tried it.
    My results are the same as yours in non-fullscreen mode, but different in full screen mode.
    When I press "F", image 2 appears on monitor A (as you said), but briefly I see image 1 on monitor C, then it blacks out.  Pressing "F" again reveals the two images in their original positions.
    If I select a block of images, but not all the columns of images on monitor B, the images are somewhat randomly assigned to A and C.  When I press F, the images on C move to A, and C blanks out to black.
    Now I know why I have never used Span I think!
    What is the purpose of this thing?! 

  • Why does safari not like the letter N?

    Hi, can anyone help?
    I know somewhere along the line I have done something wrong, but I just can't figure out what!
    I'm responsible for the website: www.gmvg.co.uk. (I try my best, but I'm just a novice)
    When I print (or print preview) pages from this website using Safari (for Windows) if the capital letter N is in the heading it doesn't appear? (e.g. the NEWS page just shows " EWS" or events page just shows "EVE TS")
    Take a look at the following pages to see what I mean:
    http://www.gmvg.co.uk/news.php
    http://www.gmvg.co.uk/events.php
    http://www.gmvg.co.uk/contact.php
    Can anyone offer any advice (it only appears to be a problem on my website, in the Safara browser - IE, Firefox, Chrome, Opera and Flock work fine).**
    Many Thanks,
    Simon.
    Message was edited by: sjulou

    Well I had someone with a Mac print some pages from my website (via Safari) and they +*did not*+ have the problem with captial Ns in headings not showing.
    I then had someone with a Windows machine print some pages (via Safari) and he too +*did not*+ have this problem.
    I'm therefore assuming (and hoping) that it's only a problem with my machines and it's not something I have done (wrong) on the website.
    I've tried searching the internet for a solution without any luck and I've tried looking into various settings on my computer (again without any luck).
    Basically I'm now out of ideas, any advice from people on here would be most welcome and once again thanks to Andy for all his help!
    Regards,
    Simon.

  • Why does Photoshop not show PSD file image tile in 'Open File' when Facebook can?

    When selecting a PSD file in Photoshop the image tile just says "PSD" so visually you cannot select it knowing which version it is.  Why can't Photoshop show the image tile like Facebook can instead of having to use Bridge?  Bridge is a huge memory hog and to have to jump back and forth is a pain.  If I choose a file to upload to Facebook, I can see the standard file icons and also the PSD versions.
    Any ideas or should this be a request in the next update?

    That's happened a more than a couple of times where I spend 20 minutes carefully preparing a post and then find out some else got it.
    Anyway, psd icons in the Explorer is a sure sign of the Windows OS. They could work with Adobe to render thumbnails, but seems something I'm not privy to in their internal policies prevents that.
    Chris Cox did offer some insights. The OS vendors expect their rules to be followed, so if the OS does not respond properly, it's not Adobe's job to work around that. I do wonder how third party codec vendors do it. I'll have to ask.
    Btw, John Ellis has a quicklook plugin for the Mac that renders PSB thumbnails should you be interested.
    PSB Quick Look Plugin
    Gene

  • Why does it not show all the pictures when i open myspace

    Hello,
    I have apple mac pro desktop. When i open some profile on www.myspace.com, does my computer not show all pictures on that profile site. Can some one tell me if i need to download some software or plugin to see all pictures on the pages. I use safari beta.

    deniz aya wrote:
    Hello,
    I have apple mac pro desktop. When i open some profile on www.myspace.com, does my computer not show all pictures on that profile site. Can some one tell me if i need to download some software or plugin to see all pictures on the pages. I use safari beta.
    Hello deniz aya,
    Welcome to Apple discussions..
    No, you do not need additional software to view the pic, myspace is just not very mac friendly, as they say ( long time coming) they are working on it.
    Myspace pages can be a nightmare, a couple of my friends pages for instance
    have been known to crash my Safari beta & when on version S 2.
    Try using Firefox as well, the "other" browser they recommend other then Safari
    for Mac users, albeit they do not say which version of Safari to use.
    Check pages including the one you have an issue viewing the pics on with the http://validator.w3.org/ to get an idea of how poorly coded they are.
    Eme '~[ ) 
    I just checked my page which has not half the items that other pages use & it Failed validation, 91 Errors, one of my friends pages failed with 490 odd........
    Of course I presume you have flash, as mentioned by QuickTimeKirk.
    To check, in Safari under the Help menu, click on -> Installed plug-ins.
    and check for Flash player.
    Under Safari menu, Safari's preferences, Security tab- Web Content: you have Enable Plug-ins checked correct?
    Message was edited by: Eme

  • Why does Safari not load cascading style sheets?

    Styles work in line in web pages, but when I try to load from *.css via either Link or @option, they do not take effect.  Suggestions?
    MacBook 3,1, Mac OS X (10.6.8) Safari 5.1.10 (6534.59.10)

    >>Also, enable Safari's Develop menu from Preferences - Advanced & use the error console to see if Safari is ignoring your CSS for some reason.
    >>>Do not see error console - that might be a matter of the release level of Safari.
    Under 'Advanced' tab, StyleSheet shows 'None selected."
    The Advanced tab of Safari Preferences includes an option to 'Show Develop menu in menu bar'.
    Once you've done that, error console is available in the Develop menu.
    >>>Activity does not show anything but the page itself.
    That suggests that the way the CSS is linked  isn't being recognised.
    CSS How to

  • Why does iphone not show up in itunes

    After i connect my iphone to the computer the iphone-sign does not show in the itunes programme.
    The iphoto pops up, so it recognizes the iphone, but in itunes nothing happens.
    This means i connot syncronize my iphone.
    I tryed to restart imac and phone, nothing....
    Anyone had this problem an now's what to do??
    thanks
    Stephen

    http://support.apple.com/kb/TS1567
    http://www.apple.com/support/iphone/assistant/itunes/#section_1

Maybe you are looking for