CSS background color problem

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default CSS background color problem

    I created a header using CSS. I defined the background color of the header. I
    also created a series of templates with editable regions, then built the pages.
    The problem I'm encountering is when I open a page (that is defined to have a
    white background) to edit it, the background color defined in the CSS header
    section takes over and turns the whole page to that color (dark blue).
    (I wouldn't care except that the corporate colors require the very dark blue
    in the header and it makes it almost impossible to read the text on the page to
    update/edit it.)

    It is a very quirky problem because:
    - the pages display properly in the browser
    - the problem only occurs sporadically
    - expanding the view in dreamweaver will sometimes correct the problem
    - clicking on the layout tab and then back to the standard tab will sometimes
    correct the problem

    Two of us on this project are having this problem. Our on site tech help is
    baffled.

    Has anyone else had this problem? Is there a way to correct it?
    Any help is greatly appreciated.

    JaynScott Guest

  2. Similar Questions and Discussions

    1. Background Color in InDesign
      I am preparing a card for off site printing. I want the color of the card to be black, therefore, on the screen I want to have the background black....
    2. Can't change background color
      The area of the screen outside of the editing area of Image Ready used to be a light gray color. This would make it easy for me to see where the...
    3. background color?
      any way to use tiled wallpaper image instead of choosing regular background colors?
    4. Background color setting
      I have the 30 day trial package of Elements 2. I just installed it. My Background color is green and I can't change it. When I power up the program,...
    5. can't see background color
      Hello, I'm using MX, and whenever I open either a new or existing web page, the background color of the page is a light blue color, when they...
  3. #2

    Default Re: CSS background color problem

    How are you applying the color to the page? Using CSS, or HTML? And if CSS is
    used, upon what element/selector is the coloring applied?

    Also, what version of Dreamweaver are you using?

    And can we see a URL or some code? Usuaully Dreamweaver doesn't screw up its
    wysiwyg representation of BACKGROUND COLORING unless something in your code is
    messed up.

    mzanime.com Guest

  4. #3

    Default Re: CSS background color problem

    Hi,
    Sorry....I meant to include that information in the last post.
    I the following CSS:
    #header {
    width: 100%;
    top: 0px;
    left: 0px;
    visibility: visible;
    background-color:#36578C;
    z-index: 1000;
    padding: 0px;
    position: fixed;
    }

    (This is standard throughout the company's pages.)
    The version is MX2004.

    The funny thing is, is that these pages have been being built for the last two
    months and this "issue" is just now presenting itself. It seems to have
    cropped up after we created the template pages.

    Thanks!

    JaynScott Guest

  5. #4

    Default Re: CSS background color problem

    that little bit of code you posted doesn't really tell me much about what is
    causing the problem. All I can really say is that visibility: visible; is the
    initial value, so that should not be needed.

    If this problem just came up recently, then you should be looking into
    whatever pages/templates you made recently. the problem may not even be related
    to your CSS at all. It may be some bundle of clutter in your HTML code. Any URL
    we can view by any chance?

    mzanime.com Guest

  6. #5

    Default Re: CSS background color problem

    position:fixed? Why? It's not supported in IE, you know?

    --
    Murray --- ICQ 71997575
    Team Macromedia Volunteer for Dreamweaver
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================

    "JaynScott" <webforumsuser@macromedia.com> wrote in message
    news:di3q8m$hun$1@forums.macromedia.com...
    > Hi,
    > Sorry....I meant to include that information in the last post.
    > I the following CSS:
    > #header {
    > width: 100%;
    > top: 0px;
    > left: 0px;
    > visibility: visible;
    > background-color:#36578C;
    > z-index: 1000;
    > padding: 0px;
    > position: fixed;
    > }
    >
    > (This is standard throughout the company's pages.)
    > The version is MX2004.
    >
    > The funny thing is, is that these pages have been being built for the last
    > two
    > months and this "issue" is just now presenting itself. It seems to have
    > cropped up after we created the template pages.
    >
    > Thanks!
    >

    Murray *TMM* 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