Table borders show up with Firefox or IE but not Safari (Win or MAC)

This very simple site (http://www.brandondean.net) has two table borders that show up under FF and IE but not Safari (either Win v4.0 or Safari for MAC, same result). I'm not an expert but I did the work using Dreamweaver 2004 MX as XHTML compliant, tested every page at W3C.org to make sure they comply with XHTML, and they do (except for my not putting in "alt" on images). I even downloaded Dreamweaver CS4 to run the "clean up the code" command and nothing is fixing the problem. I'm hoping someone out there has seen this before and can help us out. Thx.

Hi Gary,
It's probably just because the border widths you are specifying are too small (or WebKit is interpreting picas differently to Firefox/IE - I say WebKit as the same problem is visible in Google Chrome and that uses WebKit like Safari as well).
Try setting using this instead:
.borders {
font-family: Verdana;
font-size: 10px;
font-style: normal;
font-weight: normal;
font-variant: normal;
color: #cccccc;
text-decoration: none;
border: 1px solid #888888;
That seems to do the trick for Firefox and Chrome on this Linux machine I'm using at the moment.

Similar Messages

  • Cfheader works with firefox or opera, but not with IE. why?

    Good morning at all.
    i have a problem with Internet Explorer and the download of a
    excel file created by filling a table with the result of a query.
    how it work?
    click button => call create_excel.cfm =>
    <cfheader name="Content-Disposition" value="attachment;
    filename=#dbtest#.xls">
    <cfcontent type="application/vnd.ms-excel" reset="yes"
    >
    <cfoutput>
    <cfloop query_with_data>
    <....
    table ...
    </cfloop>
    <cfoutput>
    with firefox or opera, all version, when i click the button
    witch call the page that create the excel file, i obtain the excel
    file correctly.
    If i use Internet Explorer,
    the first click on the button says : (Italian to english
    translation)
    Impossible to download create_excel.cfm the I DO NOTHING and
    the second time that i click on the SAME BUTTON i obtain the
    correct xls file!
    i'm not able to solve =(
    any idea?
    thanks
    bye!

    Hi Gary,
    It's probably just because the border widths you are specifying are too small (or WebKit is interpreting picas differently to Firefox/IE - I say WebKit as the same problem is visible in Google Chrome and that uses WebKit like Safari as well).
    Try setting using this instead:
    .borders {
    font-family: Verdana;
    font-size: 10px;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    color: #cccccc;
    text-decoration: none;
    border: 1px solid #888888;
    That seems to do the trick for Firefox and Chrome on this Linux machine I'm using at the moment.

  • Applications not updating just show icon with line through it but not responding

    App Store shows 6 updates available.  Clicked on update all and now it is just in a frozen state.  The icons for the Apps are dim with the line that is traditionally there when updating, but nothing is happening.  If I click on the icons it say Unalbe to Download Application at this time.  I have checked and am able to update Apps on my iPhone but not iPad.  Any Ideas???

    Suzan-
    Are you able to access the internet using Safari?  If not, you may be having a problem with the iPad's WiFi connection.  Try unplugging the WiFi router for a few seconds.  Then reset the iPad's network.  Go to Settings-General-Reset-Reset Network Settings.
    If you are updating Apps from the App Store App on your iPad, you might also try updating by using iTunes on your computer.
    Fred

  • Table cell renderer works with any L&F, but not with Windows

    Hi,
    I created a table cell renderer / editor for a combobox in a table cell. This works all as expected, but if the Look&Feel is com.sun.java.swing.plaf.windows.WindowsLookAndFeel, which is the system L&F on Vista, the selected values in the combobox are not shown in the cell after loosing focus. Metal LF and Motif LF work, and a third party one "TinyLF" works as well.
    Can anyone imagine why, and what needs to be changed to get a cross platform consistency without Metal LF?
    A compilable demo:
    import java.awt.BorderLayout;
    import java.awt.Component;
    import java.io.IOException;
    import java.security.NoSuchAlgorithmException;
    import javax.swing.DefaultCellEditor;
    import javax.swing.DefaultComboBoxModel;
    import javax.swing.JComboBox;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JTable;
    import javax.swing.UIManager;
    import javax.swing.UnsupportedLookAndFeelException;
    import javax.swing.table.DefaultTableModel;
    import javax.swing.table.TableCellRenderer;
    import javax.swing.table.TableColumn;
    import javax.swing.table.TableModel;
    public class Test {
        static class CellRendererWithComboBox extends JLabel implements TableCellRenderer {
            JLabel label = new JLabel();
             * Set this renderer to the given column
             * @param column
             * @param r
             * @param editable
            public void setRendererTo(JTable table, int column, boolean editable) {
                TableColumn col = table.getColumnModel().getColumn(column);
                JComboBox xc = new JComboBox(new DefaultComboBoxModel(new Object[]{1, 2, 3, 4, 5, 6, 7}));
                col.setCellEditor(new ComboBoxEditor(xc));
                col.setCellRenderer(this);
                xc.setEditable(editable);
            @Override
            public Component getTableCellRendererComponent(JTable table, Object value,
                    boolean isSelected, boolean hasFocus, int row, int column) {
                if (hasFocus && isSelected) {
                    if (isSelected) {
                        label.setForeground(table.getSelectionForeground());
                        label.setBackground(table.getSelectionBackground());
                    } else {
                        label.setForeground(table.getForeground());
                        label.setBackground(table.getBackground());
                    label.setText((value == null) ? "" : value.toString());
                    return label;
                } else {
                    label.setText((value == null) ? "" : value.toString());
                    return label;
            class ComboBoxEditor extends DefaultCellEditor {
                private final JComboBox box;
                private boolean fire = true;
                public ComboBoxEditor(JComboBox b) {
                    super(b);
                    this.box = b;
                    b.setLightWeightPopupEnabled(false);
                @Override
                public boolean stopCellEditing() {
                    if (fire) {
                        super.stopCellEditing();
                    return true;
                public void stopCellEditingSilent() {
                    fire = false;
                    stopCellEditing();
                    fire = true;
        public static void main(String... aArgs) throws NoSuchAlgorithmException, IOException {
            try {
                UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
            } catch (ClassNotFoundException classNotFoundException) {
            } catch (InstantiationException instantiationException) {
            } catch (IllegalAccessException illegalAccessException) {
            } catch (UnsupportedLookAndFeelException unsupportedLookAndFeelException) {
            JFrame p = new JFrame();
            JTable t = new JTable();
            TableModel m = new DefaultTableModel(new Object[][]{
                        new Object[]{1, 2, 3, 4, 5, 6, 7},
                        new Object[]{1, 2, 3, 4, 5, 6, 7},
                        new Object[]{1, 2, 3, 4, 5, 6, 7},
                        new Object[]{1, 2, 3, 4, 5, 6, 7},
                        new Object[]{1, 2, 3, 4, 5, 6, 7}},
                    new Object[]{1, 2, 3, 4, 5, 6, 7});
            t.setModel(m);
            Test.CellRendererWithComboBox f = new CellRendererWithComboBox();
            f.setRendererTo(t, 1, true);
            p.setLayout(new BorderLayout());
            p.add(t, BorderLayout.CENTER);
            p.pack();
            p.setVisible(true);
    }

    1) Your custom cell renderer does nothing extra, so you can depend on default renderer.
    2) Instead of extending JLabel and implementing TableCellReneder, you should extend DefaultTableCellRenderer and override its get renderer method because DefaultTableCellRenderer itself extends JLabel and aditionally it does some optimizations etc., which you can miss if you implement your own renderer.
    3) If you set foreground and background color in last else statement also, then you can see the values correctly in windows L&F as well.
    Thanks!

  • Web-building my site. FIREFOX and NAVIGATOR is great but not SAFARI. Why?

    Hi,
    I am building my web site http://www.philthesecurityguard.com/ everything works great on FIREFOX and NAVIGATOR but not SAFARI. Example: on my web site, I click on REAL LETTERS in SAFARI and HALF of orange squares appears outside of my letters. FIREFOX and NAVIGATOR have FULL orange squares on the outside of my letters. Another example: The vertical thin partitions on my web is red on FIREFOX and NAVIGATOR, but there is no red line on SAFARI. How come SAFARI is "short circuiting?" (I have Adobe GoLive web builder.) [email protected]

    > Tim G" <[email protected]> wrote
    in message
    > news:gha37j$7lg$[email protected]..
    > "jus2sho" <[email protected]> wrote in
    message
    > news:gha2rf$74r$[email protected]..
    >> Thierry,
    >> Can you elaborate a little on what you said. I'm a
    complete noob that
    >> knows a
    >> little about how to use DW. Will adding the .html
    extension fix my
    >> problem? I
    >> have yet to change it because I don't have access to
    Firefox to try out
    >> right
    >> now. I will in the morning.
    >
    >
    > You absolutely need to have an HTML-compatible
    extension. Whether that is
    > your only problem... well, fix that, and then see.
    Configuring the server would allow the OP to use file names
    with no
    extension [1], which imho would be a better approach [2].
    Cool URIs don't change...
    [1]
    http://www.w3.org/Provider/Style/URI
    [2]
    http://www.w3.org/Provider/Style/URI#remove
    Thierry | Adobe Community Expert | Articles and Tutorials ::
    http://www.TJKDesign.com/go/?0
    Spry Widgets |
    http://labs.adobe.com/technologies/spry/samples/
    [click on
    "Widgets"]
    Spry Menu Bar samples |
    http://labs.adobe.com/technologies/spry/samples/menubar/MenuBarSample.html

  • I cant open many website with firefox, there say filter not let open this site, but when i open they with internet explorer not have any problem.

    i cant open many website with firefox, there say filter not let open this site, but when i open they with internet explorer not have any problem.

    Could you post an example of the filter message?
    This article has more information on the filters built in to Firefox: [http://www.mozilla.org/en-US/firefox/phishing-protection/ Firefox Phishing and Malware Protection].
    It's possible that you also have a Firefox add-on, or external software, that is filtering what you see. However, we don't have enough information to help identify it yet. If you want to review a list of your add-ons, you can find them under: Help > Troubleshooting Information.

  • I would like my google toolbar back and all my icons gmail and now with firefox 5 it is not compatiable why did you not ask me before taking them away with upgrade?????

    I would like to roll back to previous version of Firefox that I had, because the upgrade took away Google toolbar which I loved and the g mail icons and Google this and that I had and now your Firefox is not compatible with Google tool bar so I cannot re-install them. Can I have the prior version back of Firefox.

    Extensions for Firefox, such as the Google Toolbar, include a list of compatible Firefox versions. Currently, the Google Toolbar only goes up to Firefox 4. However, people have tested and it actually works on Firefox 5, so there are two workarounds:
    (1) Edit a file to revise the range of compatible versions
    (2) Install an add-on that lets you ignore the range of compatible versions
    This thread has info on both approaches: [https://support.mozilla.com/en-US/questions/837142 google toolbar does not work with firefox 5.0. why not! | Firefox Support Forum | Firefox Help].
    Any luck?
    Oh, and due to security vulnerabilities, rolling back to Firefox 4.0.1 is not recommended.

  • I am having trouble with the coloured spinning wheel showing up with everything I try and do...My Mac mini has also slowed way down... any help out there would be appreciated...

    I am having trouble with the coloured spinning wheel showing up with everything I try and do...My Mac mini has also slowed way down... any help out there would be appreciated...

    I am having trouble with the coloured spinning wheel showing up with everything I try and do...My Mac mini has also slowed way down... any help out there would be appreciated...

  • HT2589 What if I have an iPhone and its sends/recieves messages with our apple id which is my moms email? How do I fix that so that when I text my friends it doesn't show up with my moms email but my number?

    What if I have an iPhone and its sends/recieves messages with our apple id which is my moms email? How do I fix that so that when I text my friends it doesn't show up with my moms email but my number?

    Hi lfeddrix,
    You can send and receive Messages from the Apple IDs and phone numbers signed in to your iMessage section in the settings of your phone. We have an article that explains a little bit about this, and it can be found here:
    iOS: Using Messages
    http://support.apple.com/kb/ht3529
    This section is the most appropriate for your situation:
    You can change the address that new iMessage conversations are started with in Settings > Messages > Send & Receive > Start new conversations from:. Note that this setting applies only to new conversations. If you would like to change the address from which messages are sent, first change this setting, and then delete the existing conversation and start a new one.
    iMessage responses will be sent from the address the recipient most recently messaged. For example, a friend sends you a message to your Apple ID. Responses in this conversation will be sent from your Apple ID, even if you've selected new conversations to start from your phone number.
    Thanks for using the Apple Support Communities. Have a good one!
    -Braden

  • HAVING A PROBLEM WHEN I PRINT A WEB PAGE WHICH IS MORE THAT ONE PAGE LONG. ONLY THE FIRST PAGE PRINTS TO SCALE...THE REMAINING PAGES PRINT OFF THE PAGE????HELP-IT IS DEFINITELY A PROBLEM WITH FIREFOX BECAUSE IT DOES NOT HAPPEN WITH SAFARI???

    Question
    HAVING A PROBLEM WHEN I PRINT A WEB PAGE WHICH IS MORE THAT ONE PAGE LONG. ONLY THE FIRST PAGE PRINTS TO SCALE...THE REMAINING PAGES PRINT OFF THE PAGE????HELP-IT IS DEFINITELY A PROBLEM WITH FIREFOX BECAUSE IT DOES NOT HAPPEN WITH SAFARI??

    Thank you for the response. I tried to fix the problem with some of the suggestions on that page, but none seem to work. I believe that is the only website that I'm having that problem on. I got to fooling with it a bit more and when I highlight the whole page and select to print the selected area, it actually prints the whole page then, but it won't do it as a default. I guess I can just do it like that from now on, but I thought there would be something in the settings that I could have changed. Thanks again for the help.

  • Computer says firefox is open but cant be found so I have to close computer and start over. computer says firefox is open but not responding

    computer on,icons showing,open firefox and I get a firefox is open but not responding.Computer tells me to close computer programs and restart. when I go to close, no programs are open. I hit cancel on shutting down and go back to firefox icon and It opens.

    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.

  • I have a php module which runs fine in Firefox and all other browsers but not Safari. It always run twice - I see a small ? in upper right corner which is causing it to run twice but NO idea why? Help - thank you

    I have a php module which runs fine in Firefox and all other browsers but not Safari. It always run twice - I see a small ? in upper right corner which is causing it to run twice but NO idea why? I read it MAY have something to do with am image it cannot load but I see them all loaded.  Help - thank you

    Could you share a link to the page?
    Seeing it in context and in our browsers is much easier to debug.
    If not, make sure to run the validator here The W3C Markup Validation Service and clear out any problems. HTML errors, especially structural ones, will cause all kinds of display problems in various browsers/versions/platforms.

  • FIREFOX IS RUNNING BUT NOT APPEARS

    FIREFOX IS RUNNING BUT NOT APPEARS Hello, I'm with problem after I updated Firefox to version 3.6.4 and then to 3.6.6, 3.6.8 and also installing direct either version. Is the following, simply I click on browser shortcut and it doesn't open, ja tried everything, reinstalled, spent registry cleaners, ja installed straight from the website and nothing. Versions prior to version 3.6.4, please send to my email [email protected] , [email protected] Thank you

    Versions prior to version 3.6.4, install and run normally, but the subsequent install but do not work in Task Manager, it appears as if it had opened, but the desktop is as if it were closed and does not respond. I installed the pre-alpha version 4.0.3 and happened the same thing. Please give me a light, ja I consulted on the Internet and I didn't find nothing. Already deleted the profile and created another, ja deleted the folder profiles and none of it solved. Never seen similar problem

  • Code is working fine with OIM9102 BP14 patch but not in OIM9102 BP20.

    Using OIM API calls, I am able to fetch usr_key and ugp_key succesfully when utilityFactory is initialized with system admin login.
    When utilityFactory is intialized with non system admin ID, usr_key and ugp_key is returning as "0".
    This code is working fine with OIM9102 BP14 patch but not in OIM9102 BP20. Do user need any access right to invoke API calls ? Any thing related to this is changed in this patch?
    Environment details:
    OIM 9102BP20
    Websphere 6.1

    No, no more rights are needed. If it is working fine into BP older than this one, raise a SR and ask support guys to file a bug. But you have to show them step-by-step working into the older one and not working on newer. It is quite difficult happen, but maybe this feature broken on new business patch 20.
    I hope this helps,
    THiago Leoncio.

  • When I down loaded some ring tones they show up in my Music folder but not in my ringtones?

    When I down load some ring tones I purchased they show up under my Music Icon but not in my ringtones

    Where did you download them from? Did you drag them from the Music folder to the Ringtones folder?
    iOS devices use MPEG4 audio (AAC) for ringtones. Often these files end with .m4a, but the .m4r suffixe is generally used to denote a ringtone. iOS expects a ringtone to be less than 30 seconds in length and otherwise the only other restriction is that it's an AAC audio file.
    You can make your own ringtones simply enough with any audio editing application on the Mac. Just create an MPEG4 audio stream, give it the suffice .m4r, and drag it into iTunes.

Maybe you are looking for