Background Image Problem

Ask a Question related to Macromedia Contribute General Discussion, Design and Development.

  1. #1

    Default Background Image Problem

    Hi all!

    I have a site that I'm attempting to get editable for a client in Contribute
    CS3. I retrofitted the site with Dreamweaver templates, but for some reason all
    of the background-images that I have set on my container div's disappear when I
    switch to edit mode. The background of the site is quite dark, which means that
    the client can't hardly see the text they're trying to edit when the background
    disappears. The links are the same color as the background as well, which means
    they become completely invisible.

    You can see the site at: [url]http://www.blackbullbozeman.com/[/url]

    Any insight would be greatly appreciated!

    Matt

    stockliasteroid Guest

  2. Similar Questions and Discussions

    1. menu background image IE problem
      I have created background images for my horizontal spry menu items, using the tutorial on the adobe website. Works fine in Safari, Firefox and Opera...
    2. Background Image Problem (CSS)
      Does anyone know how to fix this? When I edit a page on Contribute 4, the image background does not cover the whole div. ...
    3. Image to Background
      I have an image positioned on a page exactly like I want it. I could simply type my text onto the image, but I would prefer to set the image to...
    4. problem importing image with transparent background...
      i'm tryin to import an image from photoshop to freehand that has a transparent background but when i import it it always has a white background, thus...
    5. background image vs. insert image?
      The height of a table is defined by its content. This does not include background images, so there's no assurance that your entire image will be...
  3. #2

    Default Re: Background Image Problem

    I guess you use css for your backgroundimages. Maybe you can put another
    background color behind the image that shows behind your text, so this comes up
    instead of the brown color.

    #style {
    background-image:url(../img/backgroundimage.jpg);
    background-color:#FFFFFF;
    }

    ThinkInk Guest

  4. #3

    Default Re: Background Image Problem

    Thanks for the reply!

    All of my background images are in CSS already, and I tried setting a
    corresponding background color to use as well in case Contribute was refusing
    to tile the bg image for some reason. That didn't work... The other posted
    solution on the board was to make sure that you are using paths relative to the
    stylesheet for your background images, which didn't work either.

    However, I did get it to work... I had a large masthead image that was just
    inline and not in a div. This was working because the image was the width of
    the container anyway, so it behaved like a block level element even though it
    really wasn't. So, I wrapped it in a div and everything works now... Obviously
    I should have done that from the beginning, but I didn't notice it because no
    browsers were choking on it. The background image now tiles properly, so they
    can now edit the text. There's still an issue with the bottom "cap" background
    graphic floating up too high, but that won't prevent them from editing.

    stockliasteroid Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139