background-repeat: repeat-x in HTML? Please help!

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

  1. #1

    Default background-repeat: repeat-x in HTML? Please help!

    I want to have a "centered page" look full screen...I have made them using
    layers and CSS but if I need it to work in most browsers how do I do the same
    with HTML?

    Your help is greatly appreciated!

    maynardt Guest

  2. Similar Questions and Discussions

    1. repeat
      I used to play certain games on Shockwave but now when I want to play them it says that I need a media player or a shockwave player. I click to...
    2. How to repeat background in Flex?
      Could I use a 1px image as the background, and let it repeat to fill the whole area?In HTML I can use repeat-x,repeat-y to repeat background.But...
    3. can i make background not repeat inside a table
      how do i make a background not repeat inside a table? i know how to do it for the page background but not inside a table. i thought it was in one of...
    4. How to make background image repeat endlessly?
      Please help me with this. Thanks. I am trying to make the background loop again and again. e.g. The background text "Happy Happy Happy Happy"...
    5. repeat while...
      I'm having difficulty with a repeat loop in some movie controls. When I press the rewind button and the movieTime reaches 0, it goes back to the...
  3. #2

    Default Re: background-repeat: repeat-x in HTML? Please help!

    >I want to have a "centered page" look full screen...I have made them using
    > layers and CSS but if I need it to work in most browsers how do I do the
    > same
    > with HTML?
    What? Are you asking about centering a page or tiling a background?

    Here's how to center a page that contains layers -

    Change this -

    </head>

    to this -

    <style type="text/css">
    <!--
    body { text-align:center; color:#CCC; }
    #wrapper { text-align:left; width:720px; margin:0 auto;position:relative; }
    -->
    </style>
    </head>

    change this -

    <body ...>

    to this -

    <body ...>
    <div id="wrapper">

    and this -

    </body>

    to this -

    </div><!-- /wrapper -->
    </body>

    and see if that helps.



    --
    Murray --- ICQ 71997575
    Adobe Community Expert
    (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
    ==================


    "maynardt" <webforumsuser@macromedia.com> wrote in message
    news:e6u5au$89e$1@forums.macromedia.com...
    >I want to have a "centered page" look full screen...I have made them using
    > layers and CSS but if I need it to work in most browsers how do I do the
    > same
    > with HTML?
    >
    > Your help is greatly appreciated!
    >

    Murray *ACE* Guest

  4. #3

    Default Re: background-repeat: repeat-x in HTML? Please help!

    Sorry for the confusion...Not in layers!.. Maybe this will help...go to [url]http://wwwdev.lafayette.edu/new/index.html[/url]
    maynardt Guest

  5. #4

    Default Re: background-repeat: repeat-x in HTML? Please help!

    Not in layers?

    What do you mean?

    --
    Murray --- ICQ 71997575
    Adobe Community Expert
    (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
    ==================


    "maynardt" <webforumsuser@macromedia.com> wrote in message
    news:e6u6s1$a47$1@forums.macromedia.com...
    > Sorry for the confusion...Not in layers!.. Maybe this will help...go to
    > [url]http://wwwdev.lafayette.edu/new/index.html[/url]

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