Background color not showing up in Firefox

I think I am having a CSS problem, but I am not sure. If you
look at this
link
in Firefow you will see that the background color is not showing
up. I put the background color in that table in the HTML as well as
the CSS, but am not getting any love! On another page I did it is
working fine. Click
here and you
will see it working fine.
Is there some small detail that I missed? Any help is greatly
appreciated!!

In fact a whole heap of files are pointing to your hard
drive...
Jo
"Josie1one" <joleros[nospam]@yahoo.com> wrote in
message
news:e35c9r$4ln$[email protected]..
> On the one not working, the file is pointing to your
hard drive:
> <link href="file:///C|/Documents and Settings/nick/My
Documents/Work
> Files/Clients/RKFA/style.css"
> Jo
>
> "Cloudbrk" <[email protected]> wrote in
message
> news:e35btk$41c$[email protected]..
>>I think I am having a CSS problem, but I am not sure.
If you look at this
>>
http://rebeccakoury.com/spiralstapestries/scrollearthtones.htm
in Firefow
>> you
>> will see that the background color is not showing
up. I put the
>> background
>> color in that table in the HTML as well as the CSS,
but am not getting
>> any
>> love! On another page I did it is working fine.
Click
>>
http://rebeccakoury.com/spiraltapestry.htm
and you will see it working
>> fine.
>>
>> Is there some small detail that I missed? Any help
is greatly
>> appreciated!!
>>
>
>

Similar Messages

  • Div background color not showing in Internet Explorer 8 and before

    My Footer div is not showing the background color (supposed to be black...)  in Internet Explorer 8 and earlier.  It's assuming the body color instead.  Also the border color on top of the 'bubbles' that run across the page is wrong (supposed to be blue)    Is this just because Internet Explorer 8 and earlier did not support div background and border colors yet, or is there a work-around??  Or maybe I did something wrong?
    The site is:    www.meridianwaterfiltration.com

    martcol wrote:
    I don't think that IE8 does rgba.
    It should be OK with rgb but not rgba.
    Martin
    No its doesnt
    I'd just use a hexidecimal color - black #000 and blue: #03f (see below)
    .footer {
    position: relative;
        width: 100%;
        padding-top: 0px;
        padding-right: 0;
        padding-bottom: 0px;
        padding-left: 0;
        background-image: none;
        background-repeat: repeat-x;
        margin-top: 0px;
        clear: both;
        height: 350px;
        background-color: #000;
    #bubble {
        background-image: url(Images/water drop 0banner.jpg);
        background-repeat: repeat-x;
        width: 100%;
        height: 43px;
        border-top-width: 3px;
        border-top-style: solid;
        border-top-color: #03F;
        margin: 0px;
        padding: 0px;
        background-color: #3FF;

  • "background color not showing"

    Hi all,
    I am back with a new problem..hope u guys will help me out..
    I have a very basic prgm where i am trying out the GUI things..
    here is my code:import java.lang.* ;
    import java.awt.* ;
    import java.awt.event.*;
    import javax.swing.* ;
    class SecTest {
    public static void main(String args[])
      JFrame MyFrame = new JFrame("MyFrame");
      MyFrame.setBackground(Color.pink);
      // MyFrame.show();//if i put it only here..it doesnt show me the string
      MyFrame.setBounds(100,100,400,400);
      MyFrame.addWindowListener(new WindowAdapter()
        public void windowClosing(WindowEvent e)
          System.exit(0);
      Toolkit MyTk = Toolkit.getDefaultToolkit();
      Image MyImg = MyTk.getImage("not.gif"); // not.gif is in my current directory
      MyFrame.setIconImage(MyImg);
      Container MyContentPane = MyFrame.getContentPane();
      JPanel MyPanel = new JPanel();
      MyContentPane.add(MyPanel);
      MyContentPane.add(new NewPanel());
      MyFrame.show();
      // but then if i have .show() at both places..i just get a flash of pink background and again the usual gray one..
    class NewPanel extends JPanel {
    public void paintComponent(Graphics g)
      super.paintComponent(g);
      Font f = new Font("SansSerif", Font.BOLD+Font.ITALIC, 20);
      g.setFont(f);
      g.setColor(new Color(0,128,124));
      g.drawString("Hello There..This is my first GUI program",50,50);
    };Thanks & Regards,

    You want to set the JPanel color pink so it shows, because that's the topmost layer, not the frames. And the reason why if you add show() up there your String doesn't appear, is because you haven't created the JPanel that display that yet. You need to use show() after you've created all your components so they appear. Here's the modified code:
    import java.lang.* ;
    import java.awt.* ;
    import java.awt.event.*;
    import javax.swing.* ;
    class SecTest {
    public static void main(String args[])
      JFrame MyFrame = new JFrame("MyFrame");
      //MyFrame.setBackground(Color.pink);
      // MyFrame.show();//if i put it only here..it doesnt show me the string
      MyFrame.setBounds(100,100,400,400);
      MyFrame.addWindowListener(new WindowAdapter()
        public void windowClosing(WindowEvent e)
          System.exit(0);
      Toolkit MyTk = Toolkit.getDefaultToolkit();
      Image MyImg = MyTk.getImage("not.gif"); // not.gif is in my current directory
      MyFrame.setIconImage(MyImg);
      Container MyContentPane = MyFrame.getContentPane();
      JPanel MyPanel = new JPanel();
      MyContentPane.add(MyPanel);
      MyContentPane.add(new NewPanel());
      MyFrame.show();
      MyFrame.show();
      // but then if i have .show() at both places..i just get a flash of pink background and again the usual gray one..
    class NewPanel extends JPanel {
    public void paintComponent(Graphics g)
      super.paintComponent(g);
      setBackground(Color.pink);
      Font f = new Font("SansSerif", Font.BOLD+Font.ITALIC, 20);
      g.setFont(f);
      g.setColor(new Color(0,128,124));
      g.drawString("Hello There..This is my first GUI program",50,50);
    };

  • Background JPG not showing  in IE - Firefox perfect

    http://www.fixyourenergy.net/
    Firefox displaying perfectly.
    but In IE, only "HOME" link is OK, background JPG displaying way out of position (in bottom right) on all other links.
    I've gone blind looking through the code for my mistake
    Gratitude for a solution will be unbounded
    TIA

    You could start by uploading your CSS file.  404 error, not found:
    <link href="oneColLiqCtrHdr.css" rel="stylesheet" type="text/css" />
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • I'm developing a web site using MVC3 & Razor, but my css changes do not show up on FireFox, but do on Chrome & Internet Explorer - How can I get Razor to render correctly on FireFox?

    I don't have a public version as I'm just staring development.
    For an example I have completed the walk-thru at [http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/updating-related-data-with-the-entity-framework-in-an-asp-net-mvc-application]. Then I tried changing minor items in site.css (such as font size) and the changes did not show up on FireFox, but do show up on Chrome and Internet Explorer.
    Example of change below: I changed the background from #e8eef4 to #ff0000. The table header background shows up in red for chrome & IE, but stay in light blue for FireFox.
    <code>
    table th {
    padding: 6px 5px;
    text-align: right;
    background-color: #ff0000;
    border: solid 1px #e8eef4;
    </code>

    You can also reload web page(s) and bypass the cache.
    *Press and hold Shift and left-click the Reload button.
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Cmd + Shift + R" (MAC)

  • Spot colors not showing correctly in acrobat 11

    Spot colors not showing correctly in the output preview as well as the page correctly. I have a spot pms
    295 on a page in a few different areas of text and backgrounds. The spot color shows on 1 of my backgrounds
    and text and a spot color on another background does not. These items are on the same page. Although I
    can use the eyedropper to check the color of these items and it states the spot color is present. The page
    also prints correctly. Previews not happening.

    I included 3 screen shots from Acobat 11 of the test requested. Also, included the last screen shot from Acobat 9 of same file.
    Which shows correct preview. To eliminate possible ICC profile issue. I did change profiles to all that were in the profile list
    with no change in either test.

  • The Facebook Social Plug ins are not showing up in Firefox on my website but are showing up in Internet Explorer? They were working, but "stoppped".

    My website:
    http://www.backwaterstudio.com
    Windows XP, latest Firefox
    Weebly website
    Facebook social plugins stopped working and G+ Plugins stopped working - actually stopped showing up in Firefox, but working just fine in Internet explorer.
    Here is the Facebook plugin Discussion Forum - not showing up in Firefox:
    http://www.backwaterstudio.com/discussion-forum-and-feedback.html
    Updated Flash and Java: No change
    Cleared Cache: No Change
    They worked fine for two years and just quit a few days ago.

    That was exactly the problem.....an issue with the add ons
    I followed your instructions to the nth degree and, bingo, it was "fixed".
    Interesting that I had not uploaded or changed anything prior - I am so careful about that. Something had gone corrupt though.
    Your the best!!!!!!!!!!!!!!!

  • Gradient filled background is not showing up in Internet Explorer on a PC.

    My gradient filled background is not showing up in Internet Explorer on a PC.
    I'm working on a MAC, so I don't know of anyway to preview a new MUSE Site in I.E. since it's no longer supported on a Mac.
    When the Home Page is viewed, my blue sky gradient background shows up as a white box?? I need a fix for this please.
    Here is my url:  www.ThanksSanta.org

    Hello,
    We might have to look into your .muse file to have a better look into the issue.
    I tried it on a sample file but it worked fine for me.
    Could you please e-mail your .muse file on [email protected] You can use Adobe SendNow service (https://sendnow.acrobat.com/) to send your file in case it is larger than 20MB.
    Please do not forget to mention the link to this forum in your e-mail.
    Regards,
    Sachin

  • Background does not show up when creating a PDF in InDesign

    I have placed the same image in Illustrator and the PDF does show up the image.

    Ooh. Ok. Thank you! I'm using InDesign CS5.5, Acrobat 10.1.6. Mac OSX (10.6.8).
    Layer 1: background (TIFF): does not show up
    Layer 2: Type and logos (EPS): do show up in my pdf.
    -When I select Overprint Preview in Indesign the background is missing.
    -I have created pdfs in different presets (smallest, high quality, etc) and still background does not show up.
    -When I place ONLY the background on a new InDesign document, it does show up in the PDF.
    -I have created a pdf with the background in Illustrator and it does show in my PDF.
    Thanks!

  • The web site of Adobe does not show correctly in FireFox

    I have a bizarre problem.  The site of Adobe (including where I can download the flash player) does not show correctly in FireFox and I only see it as a text HTML page, but without most images (typically, for instance, I do not see the image "Download now" but see a text line "Dowload now", and so on...
    This seems to specifically affect the Adobe web site as I have no problme for other web sites (so far).
    It is something specific to FireFox as  I do have the problem with Internet Explorer.
    The problem persis even if I restart FireFox without any add-on (safe mode).
    Any suggestion ?

    Does this only happen in Firefox?  What do you see with Internet Explorer or Chrome?  If it is only Firefox, I'd try these steps in this order:
    1. Clear your cookies and cache
    2. Reset your Firefox settings
    3. Make a new profile
    Chris

  • Header not showing up in Firefox (but OK in IE7)

    Hello everyone.
    I'm hoping someone can help me with this situation. I'm
    having a problem with my header sometimes not showing up in Firefox
    2.0 (I'm using 2.0.0.13), yet it shows up fine in IE7. The problem
    is intermittent, sometimes it displays as it should and other times
    it's not there (the header is a JPG, 1000x125 pixels, around 25k in
    file size). Sometimes clicking the "Go" button will make it appear
    (other times not) and sometimes "refresh" will do the same or make
    it "disappear" if it's already there. I'm using DW MX 2004 and I
    don't remember having this problem before until just recently on
    some pages that I made from scratch. Here is an
    example of one of
    the pages. So far it's a pretty simple layout using a table, a
    header and a few horizontal buttons.
    If it the header shows up in Firefox, please refresh or
    reload and see if it no longer shows up.
    I'm wondering if I should be doing something else in DW for
    the header so that it will show up every time in Firefox. I can
    post the code if I need to, or you can view it when you visit the
    page.
    Can someone please help?
    Thank you

    > @josie1one, can I ask what OS you are using? I'm not
    sure if it matters,
    > but
    > I'd be curious to know with my results from using XP and
    Win98.
    WinXP Professional.
    > @Dooza, It IS very confusing, ha ha. My viewing
    >
    http://www.beatleslane.com/zhtz/header01.jpg
    works fine on my end.
    >
    http://www.beatleslane.com/header01.jpg
    should NOT work because there's no
    > such
    > file in that location.
    Not Dooza but you say without /zhtz/ it shouldn't work but
    your code is:
    <td height="125" colspan="5"><img
    src="header01.jpg" alt="header"
    width="1000" height="125"></td>
    Note no /zhtz/ ??? Did you try what I suggested? Just for
    laughs?
    Jo
    "CreativeSpurt" <[email protected]> wrote in
    message
    news:ftg0ge$p$[email protected]..
    > @josie1one, I know what you mean by "It won't reappear
    at all for me now.
    > Fine
    > in IE6 oddly". Sometimes I can't make it reappear in FF2
    either, yet no
    > problems in IE7.
    >
    > My main computer is a Win XP Home Ed., and it's the
    computer I'm having
    > this
    > header issue with. As I mentioned, I tried it on a Win98
    (with FF2) and I
    > didn't have a problem (in limited testing). I just now
    tried it on an old
    > Win98
    > laptop (also with FF2) and no problems there either. So,
    the problem seems
    > to
    > only appear with my XP computer using FF. No problems
    with NN9 or IE7 or
    > Win98.
    > And it sounds like josie1one has the same issue as me
    viewing the page, so
    > it's
    > not just me.
    >
    > @josie1one, can I ask what OS you are using? I'm not
    sure if it matters,
    > but
    > I'd be curious to know with my results from using XP and
    Win98.
    >
    > @Dooza, It IS very confusing, ha ha. My viewing
    >
    http://www.beatleslane.com/zhtz/header01.jpg
    works fine on my end.
    >
    http://www.beatleslane.com/header01.jpg
    should NOT work because there's no
    > such
    > file in that location.
    >

  • Not showing ä or à in firefox while chrome does

    not showing ä or à in firefox when chrome does..example: http://services.datasport.com/2010/tri/genf/

    Adding images doesn't seem to work at the moment on this forum, so you have to host it elsewhere.
    If you have problems with uploading the attachment then you can upload your screenshot to an image hosting site like [http://www.imageshack.us/ &lt;ImageShack® - Hosting&gt;] and post a link to that image.

  • Is it possible to change TreeView's background color, not node color?

    In advance, Thanks!!
    Actually, I've made my own treeview in my project. and  I've changed my treeview node color as i want
    I wonder whether or not to change treeview's background color, not node color in below class.
    // in ~.fr
    Class
      kMyTreeViewWidgetBoss,
      kTreeViewWidgetBoss,
         IID_ICONTROLVIEW,                    kMyTreeViewCtrlViewImpl,  
         IID_ITREEVIEWWIDGETMGR,      kMyTreeViewListBoxWidgetMgrImpl,
         IID_ITREEVIEWHIERARCHYADAPTER,  kMyTreeViewListBoxHierarchyAdapterImpl,
         IID_ISTRINGLISTDATA,                          kStringListDataImpl,
         IID_IOBSERVER,                                  kMyTreeViewCtrlBoxObserverImpl,
    type MainTreeViewListBox(kViewRsrcType)       : TreeViewWidget    (ClassID = kMyTreeViewWidgetBoss)  {};
    MainTreeViewListBox   //Tree view
               kMyTreeViewWithTextListWidgetID, kPMRsrcID_None, // WidgetId, RsrcId
               kBindAll,           // Frame binding
               Frame(-1, 26, 300, 276)  // Frame
               kTrue, kTrue,         // Visible, Enabled
               kTrue,       // EraseBeforeDraw
               kInterfacePaletteFill,   // InterfaceColor
               kHideRootNode,// | kDrawEndLine, // Options. Display root node
               kFalse,  // Use H Scroll bar
               kTrue,  // Use V scroll bar
               20,   // fVScrollButtonIncrement
               20,   // fVThumbScrollIncrement
               0,   // fHScrollButtonIncrement
               0,   // fHThumbScrollIncrement
               2,   // Items selectable, 0 = No Selection, 1 = Single Selection, 2 = Multiple Selection
               kFalse,  // Allow children from multiple parents to be selected
               kTrue,  // Allow discontiguous selection
                //The tree view is dynamically created. 
    class MyTreeViewCtrlView : public PanelView
    virtual void   Draw(IViewPort* viewPort, SysRgn updateRgn);
    void MyTreeViewCtrlView::Draw( IViewPort*  viewPort, SysRgn  updateRgn )
       AGMGraphicsContext gc(viewPort, this, updateRgn);
      InterfacePtr<IGraphicsPort>  gPort(gc.GetViewPort(), UseDefaultIID()); // IID_IGRAPHICSPORT);
      ASSERT(gPort);
      gPort->gsave();
      PMRect frameOut      = GetFrame();
      frameOut.MoveTo(0, 0);
      COLORREF crBackColor    = RGB( 255, 0, 0 );
      gPort->setrgbcolor( GetRGBtoReal( GetRValue(crBackColor) ), GetRGBtoReal( GetGValue(crBackColor) ), GetRGBtoReal( GetBValue (crBackColor) ));
    gPort->rectpath(frameOut);
    gPort->fill();
    gPort->grestore();
    PanelView::Draw( viewPort, updateRgn );
    In above case, there are errors in kMyTreeViewCtrlViewImple when Indesign is launching.
    // Error Assert
    XferObject- ReadWrite for impl kMyTreeViewCtrlViewImpl of iid IID_ICONTROLVIEW in class kMyTreeViewWidgetBoss read wrong amount in plugin kMyTreeViewWidgetBoss
    but, in kMyTreeViewWidgetBoss ClassDescriptionTable, when remove this( IID_ICONTROLVIEW, kMyTreeViewCtrlViewImpl), that's ok. but I can't change background color. just interfacepalettefill color
    Please help me!!

    Here's a sample!
    That's all.
    #define GetRGBtoReal( X )   (double) X / (double) 255.f
    COLORREF crBackColor    = RGB( 255, 0, 0 );
    gPort->setrgbcolor( GetRGBtoReal( GetRValue(crBackColor) ), GetRGBtoReal( GetGValue(crBackColor) ), GetRGBtoReal( GetBValue(crBackColor) ));

  • When I upgraded to 4.0 it will not show the toolbar "Firefox is not able to show the Toolbar. Please re-install the Toolbar" How do I fix this?

    When I upgraded to 4.0 it will not show the toolbar "Firefox is not able to show the Toolbar. Please re-install the Toolbar" How do I fix this?

    This issue can be caused by an extension that isn't working properly.
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • When printing a PLD in 9.0 the color background does not show

    I have a PLD document (Sales Order) that I changed a field to have a "red" background which shows in my PLD document fine.  But I cannot get the color to show in my print out or in the print preview.  This issue has not been a problem for us in 8.82 but in 9.0 the same changes I make does not work.
    Has anyone had similar issues with this and if so, any suggestions on how to fix?
    PLD layout
    Preview of same layout
    Thanks

    Hi,
    Please compare and check both layouts. (8.82 & 9.0).
    Also refer thread No Color Backgrounds on print previews of PLD
    Thanks & Regards,
    Nagarajan

Maybe you are looking for