Creating your first site design w/o tables

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

  1. #1

    Default Creating your first site design w/o tables

    I went to the css section of the developers area and started the first webpage
    design with out tables. I did the whole tutorial and added some of my own
    stuff to it. The problem that i am having is that the background color of the
    selector content is not showing but instead the selector wrapper's background
    color is showing. Can somebody please tell me how to fix this if you want to
    look at the code go to [url]http://www.freewebs.com/gobock/Newlayout.htm[/url].

    Talguy Guest

  2. Similar Questions and Discussions

    1. Tables don't show in Design View
      I'm new to this forum.... I am trying to edit an HTML page - that I did not create - that is set up in tables in Dreamweaver MX. I believe is was...
    2. DB design...multiple tables for ancillary data or just one?
      I am working on a mini-DB app for people to upload documents and have the information stored in a DB table. Many of the criteria they need to enter...
    3. Design Time Rendering Within Tables
      Hello, I'm attempting to build a composite control which for purposes of layout renders its content as an HTML table row (<tr>). At runtime, it...
    4. Creating DB Tables in ASP
      Hi all I'm fairly new to asp & sql. using win 2k pro, IIS5, VBscript asp, & SQL SERVER 2k I want to know how to create a table in my DB in...
    5. Design: one table or two tables, depending on usage
      Gidday, I'd create a "mapping" table... one that has a unique identifier that can be linked to the billto field... and also a dept field and an...
  3. #2

    Default Re: Creating your first site design w/o tables

    The reason your dont see you #666 color on your #content is because INSIDE your
    #content you have
    <div class="container"> which in your css is floating (you have it
    float:right;). When you float something is like if it was not even inside your
    #content (but it is), is just that is FLOATING. so there is not height on your
    #content and you don't get to see the color #666666. To fix this change your
    class .container, take off the float:right; instead your give your images a
    class of floating left or right.... which it looks like your images do have a
    class already
    your container should look

    .container {
    width: 99%;
    float: right;
    }

    Studiomex Guest

  4. #3

    Default Re: Creating your first site design w/o tables

    Ok so i ddi that but when i added the float to the container class it did not
    add the background color but i did line the to containers classes up on over
    the other like it is suppose to be but when i took out the float the background
    color showed up and the container classes were off the top one was in the right
    spot but the bottom one floats to the top of my footer.

    Talguy 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