Background color problem

I have an interval that contains an image that is configured to not display, as it is placed out of the fixed screen left:-1000 with no location of height.

To the overview, the position becomes absolute with a top of 220px and a left-14px and is visible.

When the span contains an image that is less than the length, the area not covered by the image has a #FF9-background color that does not appear in the CSS file.

I succumbed to change the background color # 006, even when all the CSS elements gave this color - in desperation! There is no reference to #FF9 in CSS files.

The search for a cure on the web, I found references to a bug with the community is not showing in some terms, but I can't work out exactly why.

The problem applies to IE9, 8 Firefox, Chrome 15 * and in Dreamweaver Live View and Multiscreen, so I suspect it's a basic css / html5 problem.

Any ideas would be appreciated.

Howard Walker

Error found. I had edited the pictures and has given a larger yellow colored canvas and forgotten all about it, so I spent 3 hours tonight to waste my time. Sorry for wasting your.

Tags: Dreamweaver

Similar Questions

  • Background color problems

    I tried to get the background color to insert a file in a php file to display correctly. Have you tried change margins and padding in CSS div tags and have not been able to get the background color to complete section see http://mdy.lib.in.us/index.php and look in the news section of the library and the announcement.  The background color does not reach the top or the bottom of this section. The file of the insert is; http://MDY.lib.in.us/Weekly_News/News2010-02-02.html

    Thank you

    Hello

    You have not set a color for the

    #squarebox1
    

    but for the

    .squarebox1_colorbody
    

    Try to set the background color for the

    #squarebox1
    

    PZ

  • Binary Image Resizing background color problem

    Hello

    I'm trying to resize a table of binary images, and dsplay with a given time interval.

    I built a VI that works well as per my requirement but the problem is white turns blue,.

    I could not able to trace the problem exactly... could you suggest something?

    Like this.

    Ben64

  • Active window color problem - cannot change the background color

    original title: Active window color problem

    By right-clicking: Desktop, then click on: personalization / window color and appearance / settings (Advanced) appearance, Windows user can assign a background color of the active window in any application.  This is useful for those of us who don't want a stark white screen; We can assign a mild pastel tint which may be easier on the eyes for long term sessions.

    At some recent point, I lost the background color of the active window within Windows uses 'household.  I still not my background color assigned in any application I run (Word, Mail, etc.), but using Windows Explorer to navigate through my hard drive, the active window is now always the default stark white Windows.  How this change and can it be forced to adhere to the assigned active window background color?

    Hello

    Step 1: Check if the problem continues in a new user account.

    http://Windows.Microsoft.com/en-us/Windows-Vista/what-is-a-user-account

    Step 2: If the problem does not persist in a new user account, then the old profile could have been corrupted. Try the following article to fix a corrupted user profile.

    http://Windows.Microsoft.com/en-us/Windows-Vista/fix-a-corrupted-user-profile

  • Background color with sticky notes problem

    I have a weird problem with sticky notes. It works well, but the background color of the text entry box remains white, despite the color you choose. If you choose any color, borders will change, but the input area stays white. Any thoughts on how to solve it?

    Hi FabioFreitas,

    The problem may be related to corrupted application files. To solve this kind of issue, I would propose the following suggestions.

    Method I have
    1. open a command prompt to run the following command to repair the corrupted system files.
    (a) click the Start button and type "Command Prompt" in the search box.
    (b) right click on command prompt to run as an administrator.
    (c) Type: sfc/scannow to scan the entire drive.
    2 copy the StikyNot.exe since another available on the current computer operating system.

    More information on SFC scan found in this document:
    http://support.Microsoft.com/kb/929833

    Method II 
    If the method above does not help to create a new user account and check, if it solves the difficulty of the corrupted user profile issue.

    Create a user account
    http://Windows.Microsoft.com/en-us/Windows7/create-a-user-account

    If the problem does not occur in the new account user set your user account corrupted. The steps to fix the corrupt user account is given below.
    Fix a corrupted user profile.
    http://Windows.Microsoft.com/en-in/Windows7/fix-a-corrupted-user-profile

    It will be useful.

    Thank you, and in what concerns:
    Shekhar S - Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.
    If this post can help solve your problem, please click the 'Mark as answer' or 'Useful' at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • Problem to get the background color

    Mr President, in my code, I wasn't able to use fully all the width of the screen,

    This is my code

    public class HorizontalField extends VerticalFieldManager
    {
       HorizontalFieldManager sd=new HorizontalFieldManager(HorizontalFieldManager.USE_ALL_WIDTH);
       HorizontalFieldManager r1=new HorizontalFieldManager(HorizontalFieldManager.USE_ALL_WIDTH);
       MySeparatorField ds=new MySeparatorField();
       Font fnt,fntv;
        HorizontalField()
        {
           fnt = this.getFont().derive(FontFamily.SCALABLE_FONT, 14);
           fntv = this.getFont().derive(FontFamily.SCALABLE_FONT, 11);
           r1.setFont(fntv);
           /*---------------------Heading-----------------------------------*/
           DateField dd=new DateField("Date");
    
           dd.setFont(fnt);
           sd.add(dd);
          /*------------------*/
           MyLine s=new MyLine();
           sd.add(s);
           Desp d1=new Desp("Description");
           d1.setFont(fnt);
           sd.add(d1);      
    
           /*_________________*/
           MyLine s1=new MyLine();
           sd.add(s1);
    
           Amt d2=new Amt("Amount");
           d2.setFont(fnt);
           sd.add(d2);
           add(new SeparatorField());
           add(sd);
           add(new SeparatorField());
    
               DateField dfr=new DateField("13.08.09")
               {
                   public void paint(Graphics g)
                   {
                        g.setBackgroundColor(Color.RED);
                        g.clear();
                        super.paint(g);
                   }
               };
               r1.add(dfr);
               MyLine sr=new MyLine();
               r1.add(sr);
               Desp dr=new Desp("Reent")
               {
                   public void paint(Graphics g)
                   {
                        g.setBackgroundColor(Color.RED);
                        g.clear();
                        super.paint(g);
                   }
               };
               r1.add(dr);
               MyLine sra=new MyLine();
               r1.add(sra);
               Amt amtr=new Amt("5000")
                 {
                   public void paint(Graphics g)
                   {
                        g.setBackgroundColor(Color.RED);
                        g.clear();
                        super.paint(g);
                   }
               };
               r1.add(amtr);
               add(r1);
               add(new SeparatorField());
    
           }
    
        }
    
     class DateField extends LabelField
    {
         DateField(String s)
        {
            super(s,LabelField.LEFT);
         }
        public  int getPreferredWidth()
        {
            return Display.getWidth()*2/10;
        }
    
    }
    
      class Desp extends LabelField
    {
         Desp(String s)
        {
            super(s,LabelField.RIGHT);
         }
        public  int getPreferredWidth()
        {
            return Display.getWidth()*5/10;
        }
    
    }
    
      class Amt extends LabelField
    {
        Amt(String s)
        {
            super(s,LabelField.RIGHT);
         }
        public  int getPreferredWidth()
        {
            return Display.getWidth()*4/10;
        }
    
    }
    

    MyLine code is

    public class MyLine extends LabelField
    {
        int width,height;
    
        ButtonField dd;
        MyLine()
        {
            width=1;
            //height=200;
        }
         MyLine(int w)
        {
            width=w;
            //height=200;
        }
    
         public int getPreferredWidth()
            {
                return width;
             }
    
         public void paint(Graphics g)
                {
                       // g.setBackgroundColor(Color.BLUE);
    
                     g.drawLine(0,0,0,70);
                }
    }
    

    When I call this HorizontalField I get the result, but in the amount column (i.e. red) background color I get half of this label, I don't know what problem I did

    Thank you

    The problem is in your calculation of width.

    Your should calculate your width in such a way that (approximate):

    Display.getWidth () = DateField width, width PED, Amt width + 2 * MyLine width;

    Furthermore, a solution may be simply change your constructor Amt class as below:

            Amt(String s)        {                   super(s,LabelField.RIGHT | Field.USE_ALL_WIDTH);        }
    

    Concerning

    Bika

  • I use the color picker to select a background color, then try to create a new document using this background color. The appearance of the color changing at this time. It is a new problem. I have successfully used the procedure several times in the p

    My background color changes when I try to apply it. I put the color using the color picker. Then I try to create a new document with the same background color. But that change of a very different color. What I am doing wrong? I've used the previous procedure, several times, without this problem.

    The new document has a different color profile. Make sure that they are the same.

    The same result of RGB numbers in different colors in different color spaces. Or in other words, the color space defines the specific color produced by a certain set of numbers.

  • problem with style of background color of a menu bar?

    Hi all

    I tried a style menu bar, but it seems I either do not correctly, or it does not.

    what I found the syntax is
     -fx-background-color: Color; 
    I tried to use black and nothing. I also tried
     -fx-color-: black;
    and for some reason, the text color changes from black to white... weird...

    I use Java 8 and there is something called 'Background', which I don't know too much how to use, but not too sure if I SHOULD use it.

    I guess the setStyle would work as the use of a css file and call that, but I'm curious to know if it's something I'm doing or if it's a Java 8 bad bug: P.

    Thank you all!

    ~ KZ

    So is there a problem with 'setStyle' with Java 8, or is it with the menu bar?

    I think that, it's probably a problem with your code or you are using an outdated version.

    The following works fine for me, (Java 8 b 91, win7).

    import javafx.application.Application;
    import static javafx.application.Application.launch;
    import javafx.scene.Scene;
    import javafx.scene.control.*;
    import javafx.scene.layout.*;
    import javafx.stage.*;
    
    public class MenuBarStyling extends Application {
      @Override public void start(Stage stage) {
        Menu fileMenu = new Menu("File");
        fileMenu.getItems().setAll(
          new MenuItem("Save"),
          new MenuItem("Exit")
        );
        Menu editMenu = new Menu("Edit");
        editMenu.getItems().setAll(
          new MenuItem("Find...")
        );
    
        MenuBar menuBar = new MenuBar();
        menuBar.getMenus().setAll(
          fileMenu,
          editMenu,
          new Menu("Help")
        );
        menuBar.setStyle("-fx-base: forestgreen;");
    // use the line below rather than the line above if you prefer
    // adjusting only the background of the menu bar and not
    // the base color of the entire menuBar menu system.
    //    menuBar.setStyle("-fx-background-color: forestgreen;");
    
        stage.setScene(
          new Scene(
            new VBox(menuBar),
            300, 200
          )
        );
        stage.show();
      }
    
      public static void main(String[] args) { launch(args); }
    }
    
  • CS4 problem with background colors

    Hello

    I've recently upgraded to Dreamweaver CS4 from CS3. Since the upgrade I have a problem with the background colors for the divs layout. I can't make them appear.  I use a PC and use any programming on this other than xhtml and css work. I created a div named "main_content" so that I could change the background color. The div is written in xhtml as usual and color is listed in the CSS file as appropriate and the CSS file is attached to the html page and it's normal, but no color appears.

    For clairity, this is how it is implemented.

    < div id = "main_content" > content goes here < / div > <! - main_content - >

    In the CSS file is written like this.

    #main_content {background-color: #e1e1d6;}

    }

    It has always worked before, including at - it a bug or something in CS4 that I have to work around?  I would appreciate help with this problem.

    Thank you

    quicpic

    It should work. Are you sure there aren't any typos or a bad path to the css file? Can you post the whole code? It works, if you use the CSS dialogue window? If so, are there differences in the code?

    - Alex

  • Problem with the background color of a disabled control

    I have a few controls on the top a box colored and elevated. When I disable and gray (round button) control an adverse change occurs in the background color of the control-it gets surrounded by a grey version of the color of the raised area. I would like that the bottom remains the same as it does on the default gray Panel.

    I looked through all of the properties, but can't seem to change this behavior.

    Thanks for the link, looks that it may have been fixed now for controls tab (?) but no decorations. The solution is to use a tab control to single page with no tab, rather than a raised area. The difference in behavior can be seen in the joint, if we look carefully it is always a small amount of color change surrounding control disabled on the tab.

  • Just upgraded to 42.0 Firefox and background color setting doesn't work anymore - an empty window is always white.

    I just upgraded to Firefox 42.0 and, unlike previous versions, the setting of background color in 'Content' no longer works. In the settings page, the indicator 'Background colour' changes the color I choose (not white) in the choice of color theme, but each time I open an empty window background color is always white. Then, when I return to the Setup page to verify that the indicator still shows the color that I chose. And I have check the box 'Use the system color' or not there are tick, the result remains the same: the background color of an empty window is always white.

    It is a problem I've never met before. I would like to know why.

    Thanks for any help.

    You can make only one rule:

    @-moz-document url(about:blank), url(about:newtab){ html,body {background-color: #ccc !important } }
  • How to set the background colors of different message by account?

    I have two email accounts (let's say a private one for companies) in Thunderbird. Sometimes I (wrongly) mail on the wrong account. That is, I read some messages in a single account, followed by reading in the other account. I hit 'empty' to send a message and be sure to make sure I'm in the right account, that I want to mail to. Every now and then post to the wrong account, get the name wrong 'sender' and I ' answer to "name of the message.

    I looked at the account settings and found I can change the background color (in the e-mails triggered and and sent in the mail while composing). I changed the background color in a SINGLE account (in light yellow) and expects the other account be unchanged (white). Not the case. Change the background color in the account for a single account settings changes the color in all accounts (both).

    It is unexpected and unwanted, and my problem is still there.

    There is an add-on that accounts of color coding and records:

    https://addons.Mozilla.org/en-us/Thunderbird/addon/account-colors/

    and also the modules allowing to choose the correct identity:

    https://addons.Mozilla.org/en-us/Thunderbird/addon/identity-Chooser/

    https://addons.Mozilla.org/en-us/Thunderbird/addon/correct-identity/

    http://chrisramsden.vfast.co.UK/3_How_to_install_Add-ons_in_Thunderbird.html

  • Stop the background color printing on e-mail using Windows Mail

    I have asked this question before and was advised. [When I tried to find the answer, I got:' bughttps://bugzilla.mozilla.org/show_bug.cgi?id=683139 683139]-using the ' high contrast black ""Accessibility Option"Win XP results in the colors of the screen printing", I discovered there was no such bug by this number. Now I think that somewhere in Mozilla there is a simple and complete answer that would solve the problem that I, and several others are apparently seen. So, here is again - when I get and want to print it, the background color that I have on my Windows Mail page prints also. That I don't want. I want to email to print with no background color to everything to save on color ink. It is not flattering that I get an email from my background color is printed when I print the email. So, I need to know how to prevent that from happening?

    Another thread is here - https://support.mozilla.org/en-US/questions/912736 - why did you mark it as resolved and then start another thread?

    https://Bugzilla.Mozilla.org/show_bug.cgi?id=683139

    This bug exists and a fix we talked until the discussion has been hijacked. Not yet fixed, so turn off the high contrast in Windows text looks like the way to avoid this issue for now. Or use another browser to print from Windows Mail for now.

  • Personas display only background colors, images, that I have the latest version

    For a while now, I tried to use personas, but only some work, others show that background colors and images

    You use the default theme?

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the extensions or if hardware acceleration is the cause of the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > appearance/themes).

  • Why do the a: visited style CSS will not change anything other than the color or the background color in Firefox 6? Text-decoration and text-transform setting do not work.

    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" > ""

    < content meta = text/html"; charset = iso-8859-1 "http-equiv ="Content-Type">"
    < title > visit problem < /title >

    < style type = "text/css" >

    #footer a: link {}
    color: white;
    background-color: orange;
    text-transform: uppercase;
    }

    #footer a: visited {}
    color: Red;
    background-color: black;
    text-transform: lowercase;
    text-decoration: none;
    }

    < / style >

Maybe you are looking for

  • Adware

    I recently got some adware with a download from cnet and did my best to uninstall (including an older version of FF, which was installed in the car). Subsequently, when you restart Firefox, the ads have disappeared, but I noticed a few icons that Fla

  • Satellite Pro C660 - possible upgrade to 8 GB of RAM?

    Hello I recently bought a PSC0MA Satellite Pro C660-01K00V from a seller online with guarantee all covered. He came like a usual model would come like but with 6 GB of RAM. I thought it was a great buy so I bought it. After it happened, I looked at t

  • Date on Photo display

    The date appears on the images. It doesn't seem to be a way to turn it off. Anyonce have a suggestion?

  • change colour to black for canon printer ink!

    I have only a black ink in printer canon at this time. How can I change the settings so that my impression print in black and will not come out blank?

  • X 41 wireless adapter missing after recovery

    I have a x 41 Tablet Model: 1866-6SG I just do a cover of product to factory default, now the wireless card does not appear in Device Manager. I checked the Bios and it is activated. The same thing is happen with that I did a cover on a 61 x a few mo