How do I change the background of a single cell or a row in a table?

How do I change the background of a single cell or a row in a
table? I doesn't seem to be letting me do that.

Are you using the latest DW? If so, then it isn't letting you
because
bgcolor is deprecated and shouldn't be used.
The correct way is to use css to define the background of a
cell
CSS:
.blackcell {background-color: black;}
HTML:
<td class="blackcell">whatever in the cell</td>
Nadia
Adobe® Community Expert : Dreamweaver
CSS Templates |Tutorials |SEO Articles
http://www.DreamweaverResources.com
~ Template Customization ~
http://www.csstemplates.com.au
Spry Widget Examples
http://www.dreamweaverresources.com/spry-widgets/
"dm25" <[email protected]> wrote in message
news:f4jr5h$luu$[email protected]..
> for some reason that doesn't always work. When I click
inside a cell, it
> doesn't give me an option to change the background
color.

Similar Messages

  • How do you change the background of a single page??

    I know how to change the background of a page (wrench tool- document setup- add shape- change size to fit whole page - change colour - done)
    but it automatically makes every page that colour not just one page, please can somebody explain how to make it work. Thanks

    Hello Alp2001,
    Thank you for the details setting a background color in Pages.  When you click on Document Setup under the wrench tool, this sets the background for your entire document. 
    Alternatively, if you want to add a background on a single page but not for the entire document, you can just add a shape with the background color on that page.  I also recommend locking the shape once you add it so that it doesn't move while you are trying to add other items to the page. 
    Follow the steps in this article to add a shape, change the size to fit the whole page, and change the color:
    Pages Help for iPad - Add and edit shapes
    http://help.apple.com/pages/ipad/2.0/#/tan9ad18c384
    Once you have set the background for that page, folllow the steps under the section titled "Lock objects" in this article to lock the background shape so that it doesn't move:
    Pages Help for iPad - Layer, group, and lock objects
    http://help.apple.com/pages/ipad/2.0/#/tan5eab46568
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • How can I change the background of a single slide?

    I applied a theme to my keynote presentation but now I want to change the back of a single slide. How can I do this??? thanks in advance!!!

    Hi
    While you are at the slide that you want to change:
    Open Inspector
    Go to the second tab, named "Slide"
    The last option is named "Backround"
    You can choose a color, a gradient or an image fill from there
    And that's it.
    Hope it helps you
    Dimitrios Karamitros
    http://www.karamitros.gr

  • Changing the color of a single field in a row of a table

    Is it possible to change the color of text of a single field within a single column. If field 'C' in a row is negative number change the text color to red. Is this possible?

    Hi Champion,
    Please Do search before posting.. you get lots of threads here...
    Re: color for a particular column in table
    Re: Color a table row
    Please go through this..
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/707fb792-c181-2d10-61bd-ce15d58b5cf1?QuickLink=index&overridelayout=true

  • Change the background color of a cell in JTable

    Hi all,
    How can I change the background color of individual cell in JTable. I need to construct my own TableCellRenderer or not? I'm now using the DefaultTableCellRenderer now.
    Thx

    You could create your own renderer or you could try something like:
    table = new JTable(model)
         public TableCellRenderer getCellRenderer(int row, int column)
              DefaultTableCellRenderer tcr =
               (DefaultTableCellRenderer)super.getCellRenderer(row, column);
              if (row == 1 && column == 1)
                   tcr.setBackground(Color.green);
              else
                   tcr.setBackground(Color.red);
              return tcr;
    };

  • How can I change the background of a running webpage on my own. Example Facebook I want to change its backround color from white to black just in my view not for all

    How can I change the background of a running webpage on my own. Example Facebook I want to change its background color from white to black just in my view, not for all. Cause I really hate some site with white background because as I read for an hour it aches my eyes but not on those with darker background color.

    You can use the NoSquint extension to set font sizes (text/page zoom) and text colors on web pages.
    *NoSquint: https://addons.mozilla.org/firefox/addon/nosquint/

  • My iTunes 11.0 (mac) has a black background colour and I can not see all of the information.  How do I change the background colour in iTunes 11.0 (mac)

    My iTunes 11.0 (mac) has a black background colour and I can not see all of the information for each song.    How do I change the background colour in iTunes 11.0 (mac) so I can see check boxes etc.  My download window shows no information, it is entirely black.

    Trent o
    Someone else in the forum told me how to do this.  If you have Onyx on your system then select Parameters, iTunes and turn off high contrast mode.  If you don't have Onyx, I'd suggest getting it.  It is freeware and used to help maintain your system.  Good luck
    Paul

  • How can I change the background color in the inbox?

    The background color in my inbox (well, all mailboxes) is white. A yellow background would make the existing black text a lot easier to read. How can I change the background color in the inbox?

    Themes work in Thunderbird - duggabe was not refering to Firefox.
    Another useful addon is theme and font changer:
    * https://addons.mozilla.org/fr/thunderbird/addon/theme-font-size-changer/
    However, Thunderbird allows you to modify all sorts of things.
    Make hidden files and folders visible:
    * http://kb.mozillazine.org/Show_hidden_files_and_folders
    Help > Troubleshooting Information
    Click on 'show Folder' button
    a window opens shwoing profile folder name
    Close Thunderbird now - this is important
    In the profile name folder, Create a new folder called '''chrome''' - note the spelling
    It should be in the same place as the 'Mail' folder.
    see first image below.
    Open Notepad
    Can be located : Start > Programs > accessories
    Copy everything shown between the lines below.
    Paste into Notepad.
    Save as '''userChrome.css''' - note the spelling (edit updated - this was a typo error)
    This should be saved in the '''chrome''' folder.
    see second image below.
    Restart Thunderbird.
    I have chosen a yellow for you
    <pre>
    #f6f58c = a yellow....it is a hex code for a colour.
    </pre>
    You can change it if required. Remember when updating anything in the profile folders, you must close Thunderbird first.
    More info on colours.
    * http://www.yourhtmlsource.com/stylesheets/namedcolours.html
    <pre>
    * Do not remove the @namespace line -- it's required for correct functioning
    @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
    /*Background colour for message list*/
    #threadTree > treechildren::-moz-tree-row {
    background-color: #f6f58c !important;
    </pre>
    -------------------------------------------

  • How to change the background color of a cell in datagrid using flex3

    i want to change the background color of a cell.....how can i achieve this.....and also i want to know how a spacing cane be done between cells in a datagrid...plzzz help me???

    The only way I can see to do this is to use an item renderer for your cells.  This is really scruffy and would need tyding up, and maybe with a little more time could do better or someone else may have an idea but none the less this works.
    Define a custom component as below;
    This has logic to see what the value of the data is proveided by the dataprovider for the row, and if it matches the conditions in this case is equal to 5 sets the background color.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" width="88" height="26" dataChange="doColor()" borderColor="#000000" borderStyle="solid"
        backgroundAlpha="1">
        <mx:Script>
            <![CDATA[
                private function doColor():void {
                    if (data.value == 5) {
                        setStyle('backgroundColor', 0xcccccc);
                    } else {
                        setStyle('backgroundColor', 0xffffff);
            ]]>
        </mx:Script>
    </mx:Canvas>
    Now just apply the item renderer in the datagrid and that will do it.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"  xmlns:ns1="*">
        <mx:Script>
            <![CDATA[
                import mx.collections.ArrayCollection;
                [Bindable]
                private var ac:ArrayCollection = new ArrayCollection([
                    {value : 1},
                    {value : 2},
                    {value : 3},
                    {value : 4},
                    {value : 5},
                    {value : 6},
                    {value : 7},
                    {value : 8},
                    {value : 9},
                    {value : 10}
          ]]>
        </mx:Script>
        <mx:DataGrid x="40" y="36" width="408" height="193" dataProvider="{ac}">
            <mx:columns>
                <mx:DataGridColumn headerText="Column 1" dataField="value" itemRenderer="MyComp"/>
                <mx:DataGridColumn headerText="Column 2" dataField="col2"/>
                <mx:DataGridColumn headerText="Column 3" dataField="col3"/>
            </mx:columns>
        </mx:DataGrid>
    </mx:Application>
    I hope this helps
    Andrew

  • How do I change the background color of a row in a table indicator?

    Hello,
      How do I change the background color of a row in a table indicator? I know how to change the background color in a active cell, but that is not what I want. My first intent is to make the background color of the first row a unique color, such as green, just to highlight the top row of the table.
    Regards,
    Kaspar
    Regards,
    Kaspar

    I have done this before by using a for loop to change the active cell of a row in order to give the appearance that the whole row is turning the color at once.
    CLA, CLED, CTD,CPI, LabVIEW Champion
    Platinum Alliance Partner
    Senior Engineer
    Using LV 2013, 2012
    Don't forget Kudos for Good Answers, and Mark a solution if your problem is solved.

  • How do I change the background color of a poster in pages?

    How do I change the background color using pages for ipad?  I am working with a poster template.

    I have done this before by using a for loop to change the active cell of a row in order to give the appearance that the whole row is turning the color at once.
    CLA, CLED, CTD,CPI, LabVIEW Champion
    Platinum Alliance Partner
    Senior Engineer
    Using LV 2013, 2012
    Don't forget Kudos for Good Answers, and Mark a solution if your problem is solved.

  • How do I change the background color of my canvas in FCPX?, How do I change the background color of my canvas in FCPX?

    How do I change the background color of my canvas in FCPX? I changed it from black to checkered but would like to return it to it's orginal settings.
    Thanks

    You can change the background display color in the playback preferences, either black, white, or checkerboard. This does not change the output color. If you want to add a color to the video, you have to place a custom generator underneath your video and change the color in the inspector.

  • How do I change the background in the Menu bar screen area so that it is lighter and thus more readable?

    The background in the area where the Menu bar now sits is jetblack.. When I drag, say, the print icon or cut, paste, save icons to sit to the right of the menu bar, they're there but either I see them only faintly (printer) or I cna't see them only faintly. How can I change the background to a lighter color (it used to be much lighter).

    The easiest way might be to install a lightweight theme (formerly known as a persona). You can "shop" for one on the Add-ons site. The following link is for solid colors, but some of the pictorial ones might work, too.
    https://addons.mozilla.org/en-US/firefox/themes/solid
    You can hover your mouse over the little image tile to see how it would look if you installed it. Can you find one that looks good to you?
    Much of Firefox's interface also can be modified with style rules. However, that requires a lot more experimentation, so let's come back to that only if needed.

  • How do i change the background to gray behind my image

    how do i change the background to gray behind my image

    If your image and background are on separate layers, activate the background layer and go to Edit > Fill, select the desired gray and click OK.

  • How do you change the background color?

    I saved a Word document as a PDF and the background color is yellow. The Word document is white. On the PDF, the background is yellow and the inserted graphics and boxes are white.
    How do I change the background color of the PDF? And is there a default setting for the color. This happens every time I need to create a PDF from a Word document.
    Thank you.
    Michele

    Hi Michele,
    Please check the following Preferences:
    Go to Edit -> Preferences -> Accessibility -> make sure "Replace Document Colors" is unchecked.
    Regards,
    Anoop

Maybe you are looking for

  • Application Reports in APEX 4.0

    Hi, I've upgraded to APEX 4.0 and really enjoying the new features. The one feature that I used to use in 3.2 is the "Application Reports" under the Tasks. It is referred to in the help but for the life of me I cannot find it, has anyone else encount

  • HELP!!! iTunes 7.1 upgrade for MAC its crashing before updating the library

    I can't open iTunes after the update to 7.1, when I launch iTunes, it starts updating the iTunes library and before the progress bar is finished quits. I tried everything with no luck. Something is very wrong with the new version of iTunes 7.1 for Ma

  • How to setup NWDI environment in the Windows Server 2000?

    Hi, I need to setup NWDI environment in the Windows Server 2000. I have NWDS and SAP R/3 6.0 installed along with SAP EP 7.0. Please provide me with enough details to do so. from where i need to download NWDI software? Thanks & Regards, Sathya

  • XML Parser for PLSQL and BIG5/UTF-8

    I'm trying store data in traditional chinese submitted by IE5 (through oXMLHttpRequest.send() and javascript), I tried both 'encoding="BIG5"' and 'encoding="UTF-8"'. It seems that the parser ignore all characters that are not ascii regardless of thei

  • Set the Web Service output Language

    Hi, I have created (exposed) a web service based on a ABAP function module. Among the output data there are some values which are correctly translated in the login language (ITA or ENG) if I use the SAP GUI to test the function. On the contrary, if I