Cell borders not showing

Could someone please take a look at my site:
www.kameli.com/indexNEW.html
I am trying to make a solid white border around each of the
horizontal navigation buttons. But they are not showing up in
either Firefox or IE. (they show in design mode in DW but not when
I preview or upload my document to the web.) Currently I have it
linked to a stylesheet with the following class for each button:
.nav_btns {
border-color:#FFFFFF;
border-top:thin;
border-right:thin;
border-bottom:thin;
i also tried using style tags, that didn't work either. what
am i doing wrong?

BullocksTroy wrote:
> Could someone please take a look at my site:
>
>
http://www.kameli.com/indexNEW.html
Hi,
You need something like this...
.nav_btns {
border: thin solid #FFFFFF;
HTH
chin chin
Sinclair

Similar Messages

  • Cell borders not expanding using nested subforms

    I have an existing form whose table was created using subforms (not a table object). I found this post which addresses my issue: Cell Borders in tables of adobe form. However, I'm still having an issue and I'm hoping someone can point me in the right direction.
    The subform 'ITEM' contains 12 columns. I wrapped column 12 into a subform and named it Subform12. I then wrapped column 11 and Subform12 into a subform and called it Subform11. I continued to do this for the remaining 10 columns. I removed the borders for each individual column and instead set the border for each SubformXX. I also selected 'Auto-Fit' for the height for each SubformXX. The sixth column is the column that can contain multiple lines of text. After doing this the first 6 columns expand correctly, however, the last 6 do not.
    Can someone please tell me what I'm missing?
    Thanks!
    Julie

    Hi Julie,
    Can't you just do the following:
    For the first cell (the one with the large amount of text), you but on the right border
    You take this cell together with the next one and put it into a flowed subform with the right border
    Then you take this subform together with the next one:
    Repeat number 3:
    Kind regards,
    Niels De Greef

  • Spry Horizontal menu bar borders not showing in IE6/IE 7 but ok in Mozilla!

    I am hoping someone can help me! I have built a spry menu
    with CS 3 and have altered the CSS file to customise colours etc.
    the problem I am encountering is that I have specified white
    borders around the menus items and sub menus which look perfectly
    fine in Mozilla Firefox but when I check IE 6 & 7 the borders
    have disappeared! I am hoping someone you may have a workaround or
    any reason this might happen.
    this is the CSS
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - Revision: Spry Preview Release
    1.4 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights
    reserved. */
    LAYOUT INFORMATION: describes box model, positioning,
    z-order
    /* The outermost container of the Menu Bar, an auto width box
    with no margin or padding */
    ul.MenuBarHorizontal
    margin: 0;
    padding: 0;
    list-style-type: Arial, Helvetica, sans-serif;
    font-size: 90%;
    cursor: default;
    width: 800px;
    /* Set the active Menu Bar with this class, currently setting
    z-index to accomodate IE rendering bug:
    http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html
    ul.MenuBarActive
    z-index: 1000;
    /* Menu item containers, position children relative to this
    container and are a fixed width */
    ul.MenuBarHorizontal li
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    position: relative;
    text-align: left;
    cursor: pointer;
    width: 100px;
    float: left;
    /* Submenus should appear below their parent (top: 0) with a
    higher z-index, but they are initially off the left side of the
    screen (-1000em) */
    ul.MenuBarHorizontal ul
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    z-index: 1020;
    cursor: default;
    width: 8.2em;
    position: absolute;
    left: -1000em;
    /* Submenu that is showing with class designation
    MenuBarSubmenuVisible, we set left to auto so it comes onto the
    screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
    left: auto;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
    width: 8.2em;
    /* Submenus should appear slightly overlapping to the right
    (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
    position: absolute;
    margin: -5% 0 0 95%;
    /* Submenu that is showing with class designation
    MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
    ul.MenuBarSubmenuVisible
    left: auto;
    top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
    border: 0.5px solid #FFFFFF;
    border: 0.5px solid #FFFFFF;
    /* Menu items are a light gray block with padding and no text
    decoration */
    ul.MenuBarHorizontal a
    display: block;
    cursor: pointer;
    background-color: #b7a66d;
    border: 0.5px solid #FFFFFF;
    padding: 0.5em 0.5em;
    color: #ffffff;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: bold;
    text-transform: lowercase;
    /* Menu items that have mouse over or focus have a blue
    background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
    background-color: #c8bb89;
    border: 0.5px solid #FFFFFF;
    color: #FFFFFF;
    /* Menu items that are open with submenus are set to
    MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal
    a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal
    a.MenuBarSubmenuVisible
    background-color: #c8bb8;
    border: 0.5px solid #FFFFFF;
    color: #FFF;
    SUBMENU INDICATION: styles if there is a submenu under a
    given menu item
    /* Menu items that have a submenu have the class designation
    MenuBarItemSubmenu and are set to use a background image positioned
    on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
    background-image: url(SpryMenuBarDown.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    /* Menu items that have a submenu have the class designation
    MenuBarItemSubmenu and are set to use a background image positioned
    on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
    background-image: url(SpryMenuBarRight.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    /* Menu items that are open with submenus have the class
    designation MenuBarItemSubmenuHover and are set to use a "hover"
    background image positioned on the far left (95%) and centered
    vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
    background-image: url(SpryMenuBarDownHover.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    /* Menu items that are open with submenus have the class
    designation MenuBarItemSubmenuHover and are set to use a "hover"
    background image positioned on the far left (95%) and centered
    vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
    background-image: url(SpryMenuBarRightHover.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless
    you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form
    controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
    position: absolute;
    z-index: 1010;
    /* HACK FOR IE: to stabilize appearance of menu items; the
    slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
    ul.MenuBarHorizontal li.MenuBarItemIE
    display: inline;
    f\loat: left;
    background: #FFF;
    .Nav {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;

    I am having the same problems in IE7. I'm using the latest
    version of everything (Spry 1.6.1 and javascript file version 0.12)
    and at first I was having the problem on my drop down menus
    appearing horizontal with all the correct styles but when I changed
    the rule ul.MenuBarHorizontal ul to position: relative; the drop
    downs appear vertical now but I have no beige border around the
    whole ul anymore and I'm getting white space inbetween list items.
    http://www.wusf.usf.edu/Header_Nav_Footer_newStyleSheet.cfm
    so if anyone has any advice I'd much appreciate it. Also i'm
    using 1px width on my borders no decimals.

  • Table cell Borders not appearing

    I am creating a basic table style. I want a header row that
    has shading, with headings in bold and centered. When I create a
    table style, this is no problem to set up.
    I want the rows underneath the header to all have plain black
    1-pixel vertical and horizontal borders. When I edit the table
    style, it lets me have vertical or horizontal borders, but not
    both. If I select to have horizontal, it puts them in. Then if I
    select vertical, it removes the horizontal. When I click on Whole
    Table, it doesn't change. It doesn't apply the borders to all the
    cells.
    I appreciate any help anyone can give me!
    Thanks,
    Kathleen Baine

    This process is not intuitive.
    Try this to understand how it works.
    With Apply formatting to: Whole Table, change the border
    colour to red.
    You will see just the border for the Whole Table change, that
    is the outer border.
    Without exiting the editor, change "Apply formatting to" even
    rows. Note the colour picker will change and so will the border
    size in the Border controls. Change that to what you red and 1px as
    well, now do that for for odd rows.
    I think by now you will be getting the hang of it.
    Post back if still in trouble.

  • Cell colors not showing up

    I opened a excel file I created on a PC using Excel on my iWork 09 Numbers and it all worked except the cells I filled with color on PC wasn't showing up in Numbers. Anyone have an idea?
    Thanks

    Hi Colin,
    Welcome to Apple Discussions and the Numbers '09 forum.
    I'm assuming you are expecting results similar to these:
    A screenshot of the original file (a NeoOffice spreadsheet, saved as an Excel file) is below. Above it is the result of opening the Excel file in Numbers.
    Other than visual scale, the only change I note is in the text colour in column E ("Blue"). As I hadn't set that text to White, I checked it in the NeoOffice version and found that the choice of text colour was "Automatic." Numbers apparently does not recognize that setting.
    Regards,
    Barry

  • Cell image not showing up in browser

    I have added a background image to a cell. When I open it up
    in IE 7 from "preview in browser" from Dreamweaver 8, the image is
    displayed. But when I upload the htm file and image file into site,
    the image does not appear. I have worked on this and I cannot
    figure it out what I am doing wrong.

    Hello,
    First thing to try: rename the image without the spaces or
    the # in it:
    Change:hunger #1 new copy.png
    to:hunger.png (or something else)
    Then update the code: background="hunger.png"
    Take care,
    Tim
    "TC2112" <[email protected]> wrote in message
    news:fsuhc9$9t1$[email protected]..
    > Hello,
    >
    > First thing to try: rename the image without the spaces
    or the # in it:
    >
    > Change:hunger #1 new copy.pngto:hunger.png (or something
    else)Then update
    > the code:background="hunger.png"Take care,Tim"dddfx"
    > <[email protected]> wrote in message
    > news:fsufis$84n$[email protected]..
    >>I have added a background image to a cell. When I
    open it up in IE 7 from
    >> "preview in browser" from Dreamweaver 8, the image
    is displayed. But
    >> when I
    >> upload the htm file and image file into site, the
    image does not appear.
    >> I
    >> have worked on this and I cannot figure it out what
    I am doing wrong.
    >>
    >
    >

  • Table cell borders not always visible

    I created a PDF out of an existing Word doc. The doc is a table. The visibility of the table borders is unpredictable in the PDF. At certain zoom levels some disappear/reappear, and there doesn't seem to be a consistent pattern or behavior. Any thoughts?

    This process is not intuitive.
    Try this to understand how it works.
    With Apply formatting to: Whole Table, change the border
    colour to red.
    You will see just the border for the Whole Table change, that
    is the outer border.
    Without exiting the editor, change "Apply formatting to" even
    rows. Note the colour picker will change and so will the border
    size in the Border controls. Change that to what you red and 1px as
    well, now do that for for odd rows.
    I think by now you will be getting the hang of it.
    Post back if still in trouble.

  • Table borders not showing

    http://www.ultimateautoshade.com/index2.html
    has a table with rounded corners. This was accomplished using .jpg
    images for each corner and .jpg images as background images for the
    top, bottom and sides. Embedded in this table is another with
    multiple rows and columns to house the text. The table appears
    properly when viewed in DreamWeaver 8, however when I load it to
    the server the table disappears. An example of what you should see
    is at another site I built:
    http://www.morrisonvein.com.
    Note the multiple round corner tables display properly there.
    The images in question are tbl_XX.jpg in the code attached.
    Any ideas? Thanks in advance!

    Try to tak ethe printout of the pdf preview .
    you may see the table borders as some times grpahics wont load properly but you can see if you print the output.
    If not you have to again design the whole template without using the old one then it will work.

  • Problems with vertical cell borders and the default table style

    When laying out tables in Word, I like to use thin horizontal lines (cell borders) and thick-ish white vertical lines. The vertical white cell borders create a subtle negative space that is less cluttered than the typical boxed-in-all-sides style.
    Issue 1.
    In Pages, horizontal cell borders seem to take precedence over vertical cell borders so my vertical white line trick doesn't work. Is there a way to force my vertical white cell borders to "show up" over my think black horizontal cell borders?
    Issue 2.
    So, for the time being, I'm not using vertical white cell borders in tables; instead, I set the vertical cell borders to "none." Unfortunately, when I try to set the default table style using a table with no vertical cell borders, Pages adds the vertical cell borders anyway. Does anyone know a way to get Pages to surrender?
    Message was edited by: Steve in Seattle

    I must apologizes.
    It seems that I didn't understand well the problem.
    Issue 1.
    In Pages, horizontal cell borders seem to take precedence over vertical cell borders so my vertical white line trick doesn't work. Is there a way to force my vertical white cell borders to "show up" over my think black horizontal cell borders?
    NO
    Issue 2.
    So, for the time being, I'm not using vertical white cell borders in tables; instead, I set the vertical cell borders to "none." Unfortunately, when I try to set the default table style using a table with no vertical cell borders, Pages adds the vertical cell borders anyway. Does anyone know a way to get Pages to surrender?
    I checked and here, aftere defining a new default format with vertical lines set to none, this format is used when I cvreate a new table.
    But the same with horizontal lines doesn't apply.
    _Go to "Provide Pages Feedback" in the "Pages" menu_, describe what you wish.
    Then, cross your fingers, and wait _at least_ for iWork'10
    Yvan KOENIG (from FRANCE mardi 28 avril 2009 22:31:45)

  • Lines in shaded table cells do not render properly in pdf created in Word 2010

    When creating a pdf with shaded table cells using MS Word 2010; the black lines in the shaded table cells do not show up when looking at the page at a fit page view (anything under  around 60%). They print, they are there when I zoom in, but will not show up if you zoom out.
    I read a forum post in Adobe here which gave some really logical suggestions, but they didn't seem to work for everyone or the level of effort was not what i can put into it. I also tried some of those and variations of those; but they didn't seem to work.
    http://forums.adobe.com/thread/305508
    Did anyone come up with a solution? Some people were saying it's a bug in pdf software, if that is the case, has anyone heard of a resolution?
    I'm using Windows 7 and word 2010 btw, to create the pdf.
    Thanks!!

    Just as a test, have you tried the MS plugin for PDF creation? I have found with other versions of WORD and Acrobat that PDF Maker and the MS plugin can both fill in dots and dashes on vector graphics (basically what the border is) and yet it comes out correctly with printing to the Adobe PDF printer. Unfortunately I do not have a solution. In my case, it seemed to be related to the vector graphic itself (I could import it to InkScape or other vector graphic tool and save to EMF and it then worked fine. It may be something that MS themselves have messed up in OFFICE 2013. Good luck.

  • Cell background colors are not showing in preview - help? - DW4

    Hi,
    I created a horizontal table for my menu bar, and gave each cell a different color by creating a separate class for each with background image - image is a block of color created in Photoshop. In design mode they look they way I want, but in preview (Safari) the colors don't show up at all - the whole area is gray, and all I see is the text for each cell. Can someone tell me what I'm doing wrong? Alternatively, is there a better way I can set this up to have different colors for each button?
    Thank you!

    Here is the HTML code, and the CSS code for the menu bar follows: 
         ul.MenuBarHorizontal           
    ></style><style type="text/css"><!body {     background-color: #FFF;     font-family: Arial, Helvetica, sans-serif;}-->
        h1.  
         ul.MenuBarVertical          
    [about | MS_about.html]
    [fiction | MS_fiction.html]
    [dramatic work | MS_dramaticwork.html]
    [arts | MS_arts.html]
    [contact | MS_contact.html]
    [blog | MS_blog.html]
    <!-- end #header ><div id="mainContent"><p> </p><table width="950" border="0" cellspacing="10" cellpadding="12">        <tr>          <td width="106"><p> </p></td>          <td width="766"><p> </p>            <p>Miriam Seidel is a writer, critic and curator whose work is informed by her background in art, music and dance. </p>          <p> </p>          <p> </p>          <p> </p>          <p> </p>          <p> </p>          <p> </p>          <p> </p>          <p> </p>          <p> </p>          <p> </p>          <p> </p></td>        </tr>        <tr>          <td colspan="2" bgcolor="#CCCCCC"><p>c Miriam Seidel 2011 all rights reserved</p></td>        </tr>    </table><script type="text/javascript"><!var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", );var MenuBar2 = new Spry.Widget.MenuBar("MenuBar2", );var MenuBar3 = new Spry.Widget.MenuBar("MenuBar3", );//></script></body>     <! end #mainContent --></div></html> 
    CSS CODE:
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */ 
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding /ul.MenuBarHorizontal/ Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html /ul.MenuBarActive{     z-index: 1000;     font-family: Arial, Helvetica, sans-serif;     font-size: medium;     color: #FFF;     background-color: #FFCC99;     background-repeat: no-repeat;     left: auto;     top: auto;     right: auto;     bottom: auto;}/ Menu item containers, position children relative to this container and are a fixed width /ul.MenuBarHorizontal li/ Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) /ul.MenuBarHorizontal ul/ Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item /ul.MenuBarHorizontal ul.MenuBarSubmenuVisible/ Menu item containers are same fixed width as parent /ul.MenuBarHorizontal ul li/ Submenus should appear slightly overlapping to the right (95%) and up (-5%) /ul.MenuBarHorizontal ul ul/ Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible 
    /* Submenu containers have borders on all sides /ul.MenuBarHorizontal ul/ Menu items are a light gray block with padding and no text decoration /ul.MenuBarHorizontal a/ Menu items that have mouse over or focus have a blue background and white text /ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus{     background-color: #6C9;     color: #999;     font-family: Arial, Helvetica, sans-serif;     font-size: medium;     font-style: normal;     line-height: normal;     font-weight: normal;     font-variant: normal;     text-decoration: none;     text-align: center;     vertical-align: middle;     height: 50px;     width: 115px;}/ Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible{     background-color: #FFCC99;     color: #FFF;     font-family: Arial, Helvetica, sans-serif;     text-decoration: none;     font-size: medium;}
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) /ul.MenuBarHorizontal a.MenuBarItemSubmenu{     background-image: url(SpryMenuBarDown.gif);     background-repeat: no-repeat;     background-position: 95% 50%;     text-align: center;}/ Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) /ul.MenuBarHorizontal ul a.MenuBarItemSubmenu{     background-image: url(SpryMenuBarRight.gif);     background-repeat: no-repeat;     background-position: 95% 50%;}/ Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) /ul.MenuBarHorizontal a.MenuBarItemSubmenuHover{     background-image: url(SpryMenuBarDownHover.gif);     background-repeat: no-repeat;     background-position: 95% 50%;}/ Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover{     background-image: url(SpryMenuBarRightHover.gif);     background-repeat: no-repeat;     background-position: 95% 50%;}
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe /ul.MenuBarHorizontal iframe/ HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */@media screen, projection{     ul.MenuBarHorizontal li.MenuBarItemIE     {          display: inline;          f\loat: left;          background: #FFF; 
    Date: Mon, 20 Jun 2011 15:30:46 -0600
    From: [email protected]
    To: [email protected]
    Subject: Re: cell background colors are not showing in preview - help? - DW4 
    NEED to see the code.
    Otherwise it's like dialing a random phone number, and asking whoever answers, where you left your keys.
    >

  • Website shows all the cells borders on ipad. Please help!

    Hi Guys,
    I am a new member.
    I just realized that only on ipads and iphones, my website www.carmenguedez.com shows all the cell borders.   Every page has a table defined in HTML/CSS and the borders are hidden in all browsers viewed from PC's. How can I fix it?
    My husband and I created my website from scratch using dreamweaver and reading online tutorials, etc. We are not experts in web development and I couldn't find an answer online.
    How can I hide these cells borders?
    Please help!
    Thank you,
    Carmen

    I found the solution to my problem. I just nedded to add the bg color to my table:
    <table width="831" align="center" cellpadding="0" cellspacing="0" class="Table_Border">
    I changed to: <table width="831" align="center" cellpadding="0" cellspacing="0" class="Table_Border" bgcolor="#35281c">
    Now, the table borders don't show on ipads.
    Thanks.
    Carmen

  • I have a old excel file that does not show hiding cell boxes on my Mac.

    I have a old excel file that has some hiding info. in some of the cell boxes.  I can not see them on my Mac computers.  When I click on the cells to see the hidden info. it does not show up.

    Are you using Mac OSX version of Excel or the Windows version of Excel?  Regardless being specific to Excel, it would be best to ask in the Microsoft Office forums.
    Microsoft Office for Mac forums
    http://www.officeformac.com/productforums/
    Microsoft Office for Windows forums
    http://answers.microsoft.com/en-us/office

  • Report Painter not showing totals for some cells

    Hi,
    We're developing a report painter that will give us a total of all the columns. This total uses a set of variables and a set which essentially is a grouping of the profit centers. The problem is it is not showing any value on the cell. Despite the individual accounts having some values.
    Any ideas where could this gone wrong ? the set exist with the correct accounts.
    I.e.
                                    A1            A2           TOTAL (A1 + A2 - defined in set)
    Depreciation            100          100          200 [ but this shows blank]

    how did you solve this problem,my financial statement is not reflecting total posted depreciation even though it is reflecting the depreciation in the indididual G/L accounts.

  • Numbers does not show suggestions as I type cells as it did before OS X update.

    Numbers does not show suggestions as I type cells as it did before OS X Maverick update.

    That feature is removed.  You can post feedback to Apple using the menu item "Numbers > Provide Numbers Feedback"

Maybe you are looking for

  • Yosemite freezing during start up

    Hello I upgraded to Yosemite the day it was launched and everything was fine. Booting up and shutting down both worked at a decent speed. About 10-20 seconds. Yesterday I connected my Macbook Pro via HDMI to a television and my laptop screen froze an

  • Why do thumbnails in Adobe Bridge CC display in desaturated color?

    Running Adobe CC on MBPro 15" Retina with attached Eizo CX271 monitor, Yosemite 10.10.3, MBPro and Eizo monitor are calibrated with Color Munki Photo and running under their own color calibrated profiles. My photo files have always appeared quite sim

  • I have been charged twice when buying an app

    Hi, I use Funbridge (Gotogame) and I buy once in a while a "100 deals" for 2.49£. I just did the same, but I was charged twice and was not even credited 200 deals. What can I do? I follow the link "report a problem" next to the purchased but then I d

  • Problem with "/" in formula

    Hi I use CR XI R2 I would like to write something like this in my formula - string field from database "/" -  like a normal text string, not like a division,

  • Getting stuff out of the trash

    Hi! I used iMovie to audio record a meeting, and through a mix-up (shutting the computer down before quitting the program) the audio track wound up in the iMovie trash. Is there a way to get the audio track out of the track and preserve it. All the o