Why isn't my background image showing up?

I want to have a background image for my center section. so i made the background that image in my css. but the image won't show up. what am i doing wrong? thanks
http://www.mamacinis.com/

Try this:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<style>
section {
    background: url(http://www.mamacinis.com/images/board.png)center center fixed no-repeat;
    -moz-background-size: cover;
    -webkit-background-size:cover;
    background-size:cover;
    min-height: 900px;
</style>
</head>
<body>
<section> Something here... </section>
</body>
</html>
Nancy O.

Similar Messages

  • Why do half of my images show as preview unavailable

    Why do half of my images show as preview unavailable? One image is plain gray with nothing written on it

    Yes, you have Lightroom through the Creative Cloud. However, in the forums, each community specializes in each separate app you have. There is a forum for the Creative Cloud app, another for the Lightroom app, and yet a different for Photoshop.
    In the Adobe Creative Cloud forum, you might post a question about not being able to download another app through it, or maybe you're having trouble signing into it. In the Photoshop Lightroom forum, you might ask questions about not being able to import photos into the app or other Lightroom questions. In the Photoshop General Discussion, you might ask for help because a tool isn't working or an error message pops up. So on for all the Adobe apps.
    Hope this helps
    Benjamin

  • Why isn't my iTunes Library showing up on my iMac?

    I updated my iTunes version and now my iTunes library is not showing up on my iMac even when i plug in a device, etc.

    Why isn't my iTunes library showing up on the cloud?
    How are you trying to access your Music in the cloud?
    Have you signed up for iTunes match and let it upload your library? Are you signed in, when you are trying to download from the cloud?
    See this help document for common troubles with iTunes Match:  http://support.apple.com/kb/TS4054

  • Why don't my library images show up in the develop mode?  There is a big blue space with an X through it.

    Why don't my library images show up in the develop module?  There is a big blue space with an X through it.

    Disable GPU acceleration in your Lightroom preferences.

  • Why isn't my phone not showing up in itunes?

    Why isn't my phone not showing up in itunes?

    Funny, I had the same problem today for the first time.  I had to connect it with the sync cable for it to show.  Normally, it's always there waiting for a wireless sync.  Strange!

  • HT201272 why isn't my contact app showing ?

    Why isn't my contact app showing?

    I'm having the same problem as well - on both the iPhone4 and iPad.  I can see my subscriptions if I sign in via Safari on either of the devices, but if I try to use the built in YouTube app, it says I have no subscriptions.  This started sometime on the 11th for me. I remember watching videos that morning through the app, but they were gone when I tried that afternoon.

  • When viewing some websites my desktop background image shows as the page background...why...and how do I fix this?

    It seems that the current version of Firefox does not understand how to process style sheets. Instead of the stylesheet background color or image, I am now seeing my PC's desktop background image. This does not happen with IE or Chrome. When checking the error console, I get "Warning: Unknown property 'zoom'. Declaration dropped. Source File: http://trustserve.net/themes/ModernBlue/templates_cached/EN/global.css Line: 4"
    I am not trying to zoom.
    Any ideas on how to fix this. I can't use Firefox with these problems and I really liked it prior to these problems.

    I thought I had it disabled. I enabled aero and then disabled to be sure, and still have the problem, but that was a very good idea. Thanks.
    The problem started shortly after I installed two new programs, a graphics program, and an anti-virus. I just removed both programs and restarted the computer and that seems to have solved the problem. Your idea about Aero gave me the idea that one, or both of these programs changed some of my system settings. I am now going to install them, one at a time, and see if the transparency problem returns. I'll post my findings.

  • Only background image showing up when using DVI - RVA

    I'm trying to connect my macbook pro to my TV...I'm using the yellow RVA video cable... When I connect the cables my background image will show up on the TV, but none of my icons will. The image just stays there no matter what I open up on the screen.
    Andy suggestions?

    Are you using 'Extended Desktop' (sounds like you are) or 'Mirroring' (in which case the same image should show on both screens) ?

  • Background image show  colspan="1"  rowspan ="1" align="right valign ='midd

    My APEX version 4.0.2
    Oracle Version 11g
    1. I created Background Image for Text Box .
    2. I gave Code in HTML CELL ATTRIBUTES
        as below
                     <span style="width:533px; height:59px;background-image:url('/i/images/mypicture.png');"></span>
    3.  PRE ELEMENT TEXT  i gave the below code
                     <span style="padding:120px;"></span>
        Images are showing but getting the below code on images how to suppress the below code        
                    colspan="1"  rowspan ="1" align="right valign ='middle'{code}
    Can anyone help me to fix this
    thanks and regards                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    A wrote:
    My APEX version 4.0.2
    Oracle Version 11gPlease edit your post and only use {noformat}{noformat}tags on actual code.
    1. I created Background Image for Text Box .
    2. I gave Code in HTML CELL ATTRIBUTES
    as below
    &lt;span style="width:533px; height:59px;background-image:url('/i/images/mypicture.png');"></span>
    APEX generates the <tt>span</tt> element for report cell contents when HTML Cell Attributes are specified. Remove them from your code:style="width: 533px; height: 59px; background-image: url(/i/images/mypicture.png);"
    Also, quotes are unneccessary in CSS URLs.
    3. PRE ELEMENT TEXT i gave the below code
    <span style="padding:120px;"></span>
    This is applying padding to an empty <tt>span</tt>. The property is better applied somewhere else. What exactly are you trying to achieve here?
    Images are showing but getting the below code on images how to suppress the below code
    colspan="1" rowspan ="1" align="right valign ='middle'
    The main cause of this is probably the unnecessary <tt>span</tt> in (2) above, but <tt>align="right valign ='middle'</tt> is a syntax error. Where is this coming from? The <tt>align="right"</tt> needs a terminating double quote.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Page background images show in preview but not after uploading

    Hi -
    I've built a page with a flash animation, and some other
    minimal information below the movie. I have a page background image
    that should be repeating horizontally behind everything. When I
    preview it, all looks great! After I upload it to the actual site
    the background images disappear. The code is all within the page.
    Any ideas?

    never mind... problem resolved.
    my error in not checking my files over. oops.

  • Why doesn't a body tag background image show up in a browser?

    I've set a gif image to repeat as a background in my body tag and I can't get it to preview in a browser. I see the background fine when doing a live view in DW. I've tryed other images and none will preview in a browser. I've tryed to trouble shoot everything I can think of why this is not working and at this point I'm dumb-founded. Any help here would be most appreciated, I'm swamped with work and I really need to get this file off for client approval. Thanks in advance for any response - Vanessa
    External CSS
    body {
    color: #000;
    text-align: center;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 100%;
    background: #DAD7C5 url(/_assets/bck.gif) repeat-x left top;
    Page's Source Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Forster Sales</title>
    <link href="_css/main.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    </style>
    <meta name="Keywords" content="construction toys, eco-friendly toys, eco-friendly crafts, European toys, European baby products, made in Canada, flat head in babies, canadian sales representatives, Love Nest, Sesame Street, Roary, Nascar, Ben 10, Tamagotchi, Harumika, Disney, kids cookbooks, K'NEX, Bandai, Eebee, PlayMais, Clics, Happy Cube, Babymoov, MOMMA, Bloco, Handstand Kids" />
    <script src="scripts/swfobject_modified.js" type="text/javascript"></script>
    </head>
    <body>
    <div id="wrapper">
      <div id="container">
        <div id="logo"></div>
        <div id="header">
          <p><span class="blueBold">Forster Sales</span> provides Canadian retailers with

    THANK YOU! !!Yeah, that wasn't the entire code, but your tip to look at the path /assets/ steered me in the right direction.
    This is what I originally had:
    background: #FCFCFB url( /_assets/bck.gif) repeat-x left top;
    when I added the two decimals the problem was fixed
    background: #FCFCFB url(../_assets/bck.gif) repeat-x left top;
    Here's the page on my server http://www.forstersales.com/proofs/proof1/index.html
    Thanks again!
    Vanessa

  • Why isn't my CSS formatting showing up?

    Can someone pls review:
    www.emergesolutions-temp1.info/case_studies.html
    and tell me why my formatting isn't applying to the header
    titles as I laid
    out in the CSS?
    The title "Company A Case Study" is supposed to be a dark
    blue and the
    "Background" is supposed to be a light blue. I can see where
    the tags call
    the classes I created but they are not showing up in the
    browser.
    I'm sure I'm not doing something right with CSS but I just
    don't know what.
    Thanks!

    Joe --
    I think she's talking about the heading below that table. The
    text just
    above "Background". She's specified the class
    ".case_study_header" but it's
    not being applied.
    John
    "Joe Makowiec" <[email protected]> wrote in
    message
    news:[email protected]..
    > On 10 Jan 2007 in macromedia.dreamweaver, Beverly wrote:
    >
    >> Can someone pls review:
    >>
    >> www.emergesolutions-temp1.info/case_studies.html
    >>
    >> and tell me why my formatting isn't applying to the
    header titles as
    >> I laid out in the CSS?
    >>
    >> The title "Company A Case Study" is supposed to be a
    dark blue and
    >> the "Background" is supposed to be a light blue. I
    can see where
    >> the tags call the classes I created but they are not
    showing up in
    >> the browser.
    >>
    >> I'm sure I'm not doing something right with CSS but
    I just don't
    >> know what.
    >
    > It's showing how you told it to display:
    >
    > .grey_outline {
    > border: 1px solid #CCCCCC;
    > }
    > .dk_grey_bold {
    > font-family: Arial, Helvetica, sans-serif;
    > font-size: 8.5pt;
    > font-weight: bold;
    > color: #666666;
    > }
    >
    >
    > <td width="148" align="center"
    class="grey_outline">
    > <p class="dk_grey_bold">Company A<br />
    > Case Study</p>
    > </td>
    >
    > What did you think you had done?
    >
    > --
    > Joe Makowiec
    >
    http://makowiec.net/
    > Email:
    http://makowiec.net/email.php

  • Why are watermark and background images blurry in Acrobat Pro?

    I've created a header image in Illustrator that incorporates a client's logo and text in a box to use in Acrobat Pro XI (Because you can't insert an image in the Acrobat header/foot function--please let me know if I'm wrong about that). I exported the image from lllustrator as high quality print PDF and as a high quality JPG. The document I am working on is a combination of Word generated text pages and RTF data sets converted to PDFs.  When I try to insert the PDF header I've created it will not work in the data set pages as a watermark or background. It does work as a JPG, but the problem is that the box surrounding the JPG image and text loses its bottom line and the entire image looks blurry. The PDF isn't clear as I'd like it look either.  Any suggestions on how I can fix this would be greatly appreciated.
    Thank you!

    Hello Bill,
    Thanks for the suggestion.  Unfortunately, Acrobat only accepts a limited number of file formats. I used PDF images as much as possible assuming that they'd have the highest resolution.
    The RTF pages wouldn't take a BMP. I've been searching for an plug-in or third party add-on to resolve the issue.

  • Why doesn't the poster image show up as the first frame of my movie?

    I am new at this and maybe misunderstand the Help screen. I have a bunch of short movies which I have laid out in iWeb and published to my iDisk. I want them to load with a still image from the movie rather than show up as a black frame. The meager Help info says to drag the playhead to the desired frame and then Set Poster Frame. I have done that and saved the file and then brought that into iWeb. But then the movie loads with the start point at that frame instead of at 00:00. If I do a Set Poster Frame and then pull the playhead back to zero and save it simply loads a black box again.
    What step am I missing or I am using the wrong procedure altogether?

    Try to check here.
    http://docs.info.apple.com/article.html?artnum=303593
    http://www.mac.com/1/learningcenter/Modules/LHTSolve_t4.html

  • Why isn't my Ipod not showing up on itunes

    Why is my Ipod not showing up on Itunes

    Type "ipod touch not recognized in itunes" into the search bar at the top of this page by "Support".

Maybe you are looking for

  • Binding with more than one data sources

    So i have this table bound to a data source (call it A) and in it i have BID(Books ID) and UID (User ID). I don't want the table to show these numbers, i want it to show the name of the book coresponding to BID (and this name is in another table) and

  • Why won't my edited RAW images show after a LR re-install onto a new Hard Drive?

    Hi there. Recently my hard drive took a (hike) and crashed - data may or may not be recoverable (Geeks are working on that), and I needed to reinstall my CS5 and Lightroom software to a new hard drive (I had to buy a new one). All of my RAW photos ar

  • Removing ns0 from namespace

    hello, Have a Idoc to File scenerio. The file generated after mapping is Eg: <ns0:Document xmlns="urn:iso:std:iso:camt"> <tag0>data0</tag0> <tag1>data1</tag1> <ns0:Document> My requirement is to remove ns0 from the root element "Document" so output i

  • HT204266 How can I find my in App purchases receipt?

    How can I find my in App purchases receipt?

  • Problem in calling fm in smartforms

    Hi Friends, I m modified one form & i got the value in my internal table. but the problem is that when i m executing my print prog i got the runtime error. In dump analysis it is showing error in my fm. Anybody will help me regarding this???