Results 1 to 5 of 5

Thread: Blank Page on internet

  1. #1
    Join Date
    May 2007
    Posts
    24
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Question Blank Page on internet

    1) Script Title: Dynamic Drive: CSS Fixed Layout #2.1- (Fixed-Fixed)

    2) Script URL (on DD):
    http://www.dynamicdrive.com/style/la...1-fixed-fixed/

    3) Describe problem:
    I took out the #footer section of script.

    http://webpages.charter.net/robme/te...ntitled-8.html

    #Topsection and #maincontainer show in Dreamweaver and in Firefox on local computer.

    1. On the net, the page is blank.

    2. The menu in the #leftcolumn never shows, local or internet.

    Thanks for all help received.

  2. #2
    Join Date
    Feb 2007
    Posts
    293
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    When you took out the second set of styles for the topsection, you also needed to comment out the first line, not just starting at the h1. Your page should load correctly if you either remove the entire thing or make it like this:

    Code:
    /*#topsection 
    h1
    {
    margin: 0;
    padding-top: 6px;
    } */
    Also, you should take out all the margin and other extra info in your body tag, since that should be set using the css.

  3. #3
    Join Date
    May 2007
    Posts
    24
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    Thanks for replying. I already did as you stated in the head.

    I don't know what needs to come out of the body.

    I uploaded the page and it looks different but no right yet.


    Thank you

  4. #4
    Join Date
    Feb 2007
    Posts
    293
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    The width of the maincontainer needs to be 840px to match the negative of the margin-left of the #leftcolumn. It won't work as a percentage. It needs to go back to:

    Code:
    #maincontainer{
    width: 840px; /*Width of main container*/
    height: 800px;
    margin: 0 auto; /*Center container on page*/
    }

  5. #5
    Join Date
    May 2007
    Posts
    24
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by rob11 View Post
    Thanks for replying. I already did as you stated in the head.

    I don't know what needs to come out of the body.

    I uploaded the page and it looks different but no right yet.


    Thank you
    Thanks veronica, I have it working.

    rob11

Bookmarks

Posting Permissions

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