How do I change the color of the background in the Fluid GridContainer?

When I began the project the client wanted a black background- and now she wants a white background- and I can't figure out where to change it. Would anybody know the right location
Basically trying to lose the black margin lines on either side of the center DIV which are showing the black behind the 3 divs
http://octusaspine.com/contact.html
Much appreciate any advice... I've been googling and exploring the css... :O

Line 39 onwards of octusaSpine.css says
#LayoutDiv1
  clear: both;
  float: left;
  margin-left: 0px;
  width: 100%;
  display: block;
  background-color: #000000;
Change the value to #FFFFFF

Similar Messages

  • How can one change the color of JToolTip background

    how can one change the color of JToolTip background from Purple to user defined ? I am using setToolTipText() method to set the text required but here the background color of the ToolTip is Purple and i wish to change it to white.. how can i do it ?
    i tried to change the color by defining a seperate class JToolTip but i don't know how to set it with a JButton..
    can someone help..
    thanks in advance ..
    avinash

    How can I change the text size and font?Give a man a fish.... Check out UIManager.

  • How can I change scrollbar colors? It's hard to see the menu selection/color when scrolling through bookmarks, for example.

    How can I make clearer the menu highlight selections, for example when scrolling through my bookmarks. The light blue color is hard to see in Windows 7. How do I change that color?? Running FF 3.6.6
    == This happened ==
    Every time Firefox opened

    " Is there anyway I can define individually as to what color should be related to each text in ring menu?"
    Well not with a ring and not programatically.
    The best I can suggest is a picture ring, see below.
    Ben
    Message Edited by Ben on 11-18-2005 02:16 PM
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction
    Attachments:
    Picture Ring.JPG ‏5 KB

  • How to let the user define the colors for each plots in the graph (I use LabVIEW 7)?

    How to let the user define the colors for each plots in the graph (I
    use LabVIEW 7)?

    Hi,
    Take a look at this example, it uses property nodes to select tha
    active plot and then changes the color of that plot.
    If you want to make the number of plots dynamic you could use a for
    loop and an array of color boxes.
    I hope this helps.
    Regards,
    Juan Carlos
    N.I.
    Attachments:
    Changing_plot_color.vi ‏38 KB

  • How do I change Text Colour in a Spreadsheet?  The Help menu doesn't help.

    Simple question whcih i cannot find the simple answer to:  How do I change Text Colour in a Spreadsheet?  The Help menu doesn't help.

    Hi Lecia,
    You have several choices.
    Use the first set of controls in the Format Bar. One of these is a Color well (red in the image). Select the cell(s) in which you want the text coloured, then click the well to open its Color palette, and choose your colour.
    Use the Text Inspector. Open the inspector, click the Text button (T), and use the tools there (similar to the set in the Format Bar).
    Press command-T to open the Fonts Window. This offers a few more options than are available in the Inspector or the Format bar.
    Regarding "Help": I'd recommend using the Numbers '09 User Guide, which you can download via the Help menu. Easier to search, and easier reading than the individual Help articles. search 'text color' to quickly get to instructions on applying colour to text.
    Regards,
    Barry

  • InDesign CS6: How do I set Character Color to Unspecified/Undefined in the Paragraph Style Options?

    Is there a way to create a Paragraph Style that leaves the Character Color unspecified?  I have a bunch of existing text frames containing characters of various colors. When I apply the Paragraph Style, the text is changed to black. I want the text color to remain unchanged; that is, I want the Paragraph Style's Character Color attribute undefined.  How do I do this?
    All of the text frames in this case have their Character Style set to [None]. The text colors were applied individually, not via the use of Character Styles.

    I have a bunch of existing text frames containing characters of various colors. When I apply the Paragraph Style, the text is changed to black. I want the text color to remain unchanged
    If you apply the color to the characters via Character styles then the colors will be unchanged when the Paragraph style is applied. Like this:

  • How I can change this query, so I can display the name and scores in one r

    How I can change this query, so I can add the ID from the table SPRIDEN
    as of now is giving me what I want:
    1,543     A05     24     A01     24     BAC     24     BAE     24     A02     20     BAM     20in one line but I would like to add the id and name that are stored in the table SPRIDEN
    SELECT sortest_pidm,
           max(decode(rn,1,sortest_tesc_code)) tesc_code1,
           max(decode(rn,1,score)) score1,
           max(decode(rn,2,sortest_tesc_code)) tesc_code2,
           max(decode(rn,2,score)) score2,
           max(decode(rn,3,sortest_tesc_code)) tesc_code3,
           max(decode(rn,3,score))  score3,
           max(decode(rn,4,sortest_tesc_code)) tesc_code4,
           max(decode(rn,4,score))  score4,
           max(decode(rn,5,sortest_tesc_code)) tesc_code5,
           max(decode(rn,5,score))  score5,
           max(decode(rn,6,sortest_tesc_code)) tesc_code6,
           max(decode(rn,6,score))  score6        
      FROM (select sortest_pidm,
                   sortest_tesc_code,
                   score,
                  row_number() over (partition by sortest_pidm order by score desc) rn
              FROM (select sortest_pidm,
                           sortest_tesc_code,
                           max(sortest_test_score) score
                      from sortest,SPRIDEN
                      where
                      SPRIDEN_pidm =SORTEST_PIDM
                    AND   sortest_tesc_code in ('A01','BAE','A02','BAM','A05','BAC')
                     and  sortest_pidm is not null 
                    GROUP BY sortest_pidm, sortest_tesc_code))
                    GROUP BY sortest_pidm;
                   

    Hi,
    That depends on whether spriden_pidm is unique, and on what you want for results.
    Whenever you have a problem, post a little sample data (CREATE TABLE and INSERT statements, relevamnt columns only) for all tables, and the results you want from that data.
    If you can illustrate your problem using commonly available tables (such as those in the scott or hr schemas) then you don't have to post any sample data; just post the results you want.
    Either way, explain how you get those results from that data.
    Always say which version of Oracle you're using.
    It looks like you're doing something similiar to the following.
    Using the emp and dept tables in the scott schema, produce one row of output per department showing the highest salary in each job, for a given set of jobs:
    DEPTNO DNAME          LOC           JOB_1   SAL_1 JOB_2   SAL_2 JOB_3   SAL_3
        20 RESEARCH       DALLAS        ANALYST  3000 MANAGER  2975 CLERK    1100
        10 ACCOUNTING     NEW YORK      MANAGER  2450 CLERK    1300
        30 SALES          CHICAGO       MANAGER  2850 CLERK     950On each row, the jobs are listed in order by the highest salary.
    This seems to be analagous to what you're doing. The roles played by sortest_pidm, sortest_tesc_code and sortest_test_score in your sortest table are played by deptno, job and sal in the emp table. The roles played by spriden_pidm, id and name in your spriden table are played by deptno, dname and loc in the dept table.
    It sounds like you already have something like the query below, that produces the correct output, except that it does not include the dname and loc columns from the dept table.
    SELECT    deptno
    ,       MAX (DECODE (rn, 1, job))     AS job_1
    ,       MAX (DECODE (rn, 1, max_sal))     AS sal_1
    ,       MAX (DECODE (rn, 2, job))     AS job_2
    ,       MAX (DECODE (rn, 2, max_sal))     AS sal_2
    ,       MAX (DECODE (rn, 3, job))     AS job_3
    ,       MAX (DECODE (rn, 3, max_sal))     AS sal_3
    FROM       (
               SELECT    deptno
               ,          job
               ,          max_sal
               ,          ROW_NUMBER () OVER ( PARTITION BY  deptno
                                              ORDER BY          max_sal     DESC
                                )         AS rn
               FROM     (
                             SELECT    e.deptno
                       ,           e.job
                       ,           MAX (e.sal)     AS max_sal
                       FROM      scott.emp        e
                       ,           scott.dept   d
                       WHERE     e.deptno        = d.deptno
                       AND           e.job        IN ('ANALYST', 'CLERK', 'MANAGER')
                       GROUP BY  e.deptno
                       ,           e.job
    GROUP BY  deptno
    ;Since dept.deptno is unique, there will only be one dname and one loc for each deptno, so we can change the query by replacing "deptno" with "deptno, dname, loc" throughout the query (except in the join condition, of course):
    SELECT    deptno, dname, loc                    -- Changed
    ,       MAX (DECODE (rn, 1, job))     AS job_1
    ,       MAX (DECODE (rn, 1, max_sal))     AS sal_1
    ,       MAX (DECODE (rn, 2, job))     AS job_2
    ,       MAX (DECODE (rn, 2, max_sal))     AS sal_2
    ,       MAX (DECODE (rn, 3, job))     AS job_3
    ,       MAX (DECODE (rn, 3, max_sal))     AS sal_3
    FROM       (
               SELECT    deptno, dname, loc          -- Changed
               ,          job
               ,          max_sal
               ,          ROW_NUMBER () OVER ( PARTITION BY  deptno      -- , dname, loc     -- Changed
                                              ORDER BY          max_sal      DESC
                                )         AS rn
               FROM     (
                             SELECT    e.deptno, d.dname, d.loc                    -- Changed
                       ,           e.job
                       ,           MAX (e.sal)     AS max_sal
                       FROM      scott.emp        e
                       ,           scott.dept   d
                       WHERE     e.deptno        = d.deptno
                       AND           e.job        IN ('ANALYST', 'CLERK', 'MANAGER')
                       GROUP BY  e.deptno, d.dname, d.loc                    -- Changed
                       ,           e.job
    GROUP BY  deptno, dname, loc                    -- Changed
    ;Actually, you can keep using just deptno in the analytic PARTITION BY clause. It might be a little more efficient to just use deptno, like I did above, but it won't change the results if you use all 3, if there is only 1 danme and 1 loc per deptno.
    By the way, you don't need so many sub-queries. You're using the inner sub-query to compute the MAX, and the outer sub-query to compute rn. Analytic functions are computed after aggregate fucntions, so you can do both in the same sub-query like this:
    SELECT    deptno, dname, loc
    ,       MAX (DECODE (rn, 1, job))     AS job_1
    ,       MAX (DECODE (rn, 1, max_sal))     AS sal_1
    ,       MAX (DECODE (rn, 2, job))     AS job_2
    ,       MAX (DECODE (rn, 2, max_sal))     AS sal_2
    ,       MAX (DECODE (rn, 3, job))     AS job_3
    ,       MAX (DECODE (rn, 3, max_sal))     AS sal_3
    FROM       (
                   SELECT    e.deptno, d.dname, d.loc
              ,       e.job
              ,       MAX (e.sal)     AS max_sal
              ,       ROW_NUMBER () OVER ( PARTITION BY  e.deptno
                                           ORDER BY       MAX (sal)     DESC
                                          )       AS rn
              FROM      scott.emp    e
              ,       scott.dept   d
              WHERE     e.deptno        = d.deptno
              AND       e.job                IN ('ANALYST', 'CLERK', 'MANAGER')
                  GROUP BY  e.deptno, d.dname, d.loc
              ,       e.job
    GROUP BY  deptno, dname, loc
    ;This will work in Oracle 8.1 and up. In Oracle 11, however, it's better to use the SELECT ... PIVOT feature.

  • The calendar week view on my iphone 4s starts on a Sunday.  I am synching with outlook on my computer which starts the week view on a Monday which I prefer.  How do I change my iphone calendar view to start the week on a Monday?

    The calendar week view on my iphone 4s starts on a Sunday.  I am synching with outlook on my computer (pc)  which starts the week view on a Monday which I prefer.  How do I change my iphone calendar view to start the week on a Monday?  I am in Australia.
    I have just noticed the other discussion points - mine is set to Australia. 
    Dear Apple - as the day that the week starts on can depend on country and religion - how about making it an option that the user can change????

    I believe the week view on the iPhone is handled by the Region settings in the phone. I am not aware of any other manner to change it, as you can with Outlook.

  • Question about iCloud. How do I change my e-mail address, I have the wrong one and want to change it.

    question about iCloud.  How do I change my e-mail address, I got the wrong address.

    There are a variety of options available to you, including creating an email "alias" or changing the email address associated with your iCloud ID.
    For all practical purposes your iCloud email address and Apple ID are interchangeable. To change your Apple ID read Apple ID: Changing your Apple ID.
    If you simply created an Apple ID in error, you might consider abandoning it altogether and creating a new one. On the other hand, if you already used that Apple ID to purchase iTunes or other digital content, don't create a new Apple ID, because any purchases you already made are inexorably linked to the Apple ID used to make them.

  • How do I change my default "SAP Working Directory" to the one I wish ?

    Hello Gurus,
    How do I change my default "SAP Working Directory" to the one I wish ?
    At the moment default SAP Working Directory to set to the following directory.
    "C:\Documents and Settings\T51273\SapWorkDir"
    So, when ever I try to download a Report/Table Contents/Spool Request, SAP prompts me to save in the above SAP Working Directory, which is "C:\Documents and Settings\T51273\SapWorkDir". Ofcourse I can change the folder in the dialogue box, but I don't want to change the folder each and every time I download a report from SAP.
    I wish to change my default "SAP Working Directory" to "My Documents" Folder. So that from next time,
    if ever I try to download a Report/Table Contents/Spool Request, SAP should prompt "My Documents" Folder. That way I don't have to change the folder at the time of saving.
    Full Points are assigned for an answer that works...
    Thank You,
    Nag.

    Hello,
    A short question about transaction SO21:
    Is this a local setting, per GUI?
    Or does this affect all users?
    I have a problem opening an attachment (Mandates).
    SAP wants to save it to C:\Windows\System32\
    I see that is stated at SO21.
    If I change that to another (accessable) location, does that affect the opening of the attachment?
    Thanks!

  • I am trying to change the color of a background layer and it will not accept the color I want

    I am trying to change the color of a background layer and it will not accept the color I want

    If you want to get help you may have to provide a lot more details about what you are doing (which tools or commands do you use, what exactly happens when it fails, …)?

  • My iPhone has the correct Apple ID for everything BUT iCloud.  How do I change that.  Going through Settings shows the incorrect ID but it does not allow change.

    My iPhone has the correct Apple ID for everything BUT iCloud.  How do I change that.  Going through Settings shows the incorrect ID but it does not allow change.

    Settings > iCloud > delete account
    You want to keep all content on your iPhone
    Resign back in

  • How do I change custom field description and name on the project fields PDP

    I'm creating a custom PDP for a workflow process and I need to add the folloiwng fields "Project Name" and "Description"
    When I try to create Project Name custom field under server settings I get the following message "The custom field name cannot match the name of any intrinsic fields."
    So I went to the PDP web part Project fields and I found a field named " Project Name". I added it to the Proejct Fields web part, but it displays as "Name".
    How can I change this field that's out of the box? I don't see "Project Name" and "Description" under server settings > Enterprise Custom Fields and Lookup Tables to modify them.
    Thank you

    Hi there,
    Project Name & description fields are internal fields in project server which you cannot view in Enterprise custom fields in PWA. You will not be able to create with the similar name. There is no way to change these fields as far as I know. 
    I would suggest to have the new fields name something like  Project_Name/ ProjName or Project_Description/ProjDescription . 
    Hope that helps.Thanks, Amit Khare |EPM Consultant| Blog: http://amitkhare82.blogspot.com http://www.linkedin.com/in/amitkhare82

  • How do i change my iPhone to another iPhone using the same sim but keep all my photos ands everything?

    How do i change my iphone to another iphone using the same sim but keep all my photos and everything?

    Old Phone to New Phone
    http://support.apple.com/kb/HT2109

  • TS3982 I have changed a keyboard to work on a different computer. How do I change it back so it works on the original computer?

    I have changed a keyboard to work on a different computer. How do I change it back so it works on the original computer?

    To recognize your iPod touch on your Mac, AMDS has to be installed.
    To reinstall follow this article:
    iTunes: How to remove and reinstall the Apple Mobile Device Service on Mac OS X 10.6.8 or Earlier

  • HT1918 How do I change my account security questions without entering the answers to the old questions?

    How do I change my account security questions without entering the answers to the old questions?

    Some Solutions for Resetting Forgotten Security Questions: Apple Support Communities

Maybe you are looking for

  • Should I use the short vector types for C++ AMP?

    Hello, is there any performance reason to use short vector types (as outlined in http://blogs.msdn.com/b/nativeconcurrency/archive/2012/04/03/short-vector-types-in-c-amp.aspx) in my C++ AMP kernels that will be confined to execution only on the GPU?

  • Can't find contacts on N95 8GB

    Hi there. Just got my new N95 8GB -2 & when i add a new contact i can find it by scrolling all the way down but not by one letter. eg I have entered a contact just as M but when i go contacts> M , i get a list of everything with M starting at A!! eg

  • Looking for how to run both a Quadro 4000 and a geforce card win7 please

    hello, way back when i built the window 7 editing rig i tried to get a quadro 4000 and a geforce 9800 GT (older version) to work together to get 4 displays going but i had stability issues so i got another quadro and never had a problem however, read

  • How to import only master files from iPhoto

    Hi, When I import an event or an album in Aperture from iPhoto, both the master and the corrected file are imported as a stack. But I would like in fact to have only the master file and rework (if necessary) the changes into aperture versioning syste

  • Hp pavilion dv7-6178us

    HP Pavilion dv7-6178us fan not working, please instruccions about where to find a replacement and how to do it so, because the laptop gets overheated and is almost imposible to use it, and i have been trying to install the hp software Coolsense, but