Results 1 to 4 of 4

Thread: Problem with website layout

  1. #1
    Join Date
    Dec 2008
    Posts
    105

    sad Problem with website layout

    Hello Friends

    I'm having problem with the layout while opening any specific websites. For example if i try to open MSN websites its layout gets completely screwed up? I face this problem both in my explorer as well in my Firefox. I'm not sure but is it related to my settings? Can any one help me out to resolve this problem? Any kind of help would be appreciated.

    Thanks.

  2. #2
    Join Date
    Apr 2008
    Posts
    2,277

    Re: Problem with website layout

    Layout has unusual and hard to predict effects on the display of boxes, as well as implications for their descendant elements.

    Consequences of an element having, or not having “layout” can include:

    • Many common IE float bugs.
    • Boxes themselves treating basic properties differently.
    • Margin collapsing between a container and its descendants.
    • Various problems with the construction of lists.
    • Differences in the positioning of background images.
    • Differences between browsers when using scripting.

    The above list issues can create a problem of “layout” for a particular website.

  3. #3
    Join Date
    May 2008
    Posts
    2,792

    Re: Problem with website layout

    I think div's are chunks of space in your layout that you control with div tags and positioning tags. They are not tricks, they are fundamental aspects of CSS (cascading style sheets).

    If you get rid of them, you have no way to control the layout of your web elements, so of course the page is going to get messed up.

    To move the AD down, you have to find the div container that controls the ad placement and use the absolute positioning tags to place the container where you want it.The coordinates are x and y and are in pixel measurements.

    The div for the ad might look something like this:

    #ad
    {
    color: white;
    background: #7D3847;
    position: absolute;
    top: 30px;
    left: 400px;
    width: 700px;
    height: 90px;
    }

    Top is your y coordinate in pixels, left is your x coordinate in pixels.

    Increasing the number in the top tag will move your element further down the page.

    Also make sure the ad container is not located inside another container that will limit the absolute positioning.

    It should be somewhere by itself inside the body div. Also Flash is not a Layout property, it is a multimedia format. It has nothing to do with laying out a page, it is just an element of the page. Your not going to be able to fix your AD problem without a general understanding of web design and CSS. I would just recommend looking for a different layout that work for you.

  4. #4
    Join Date
    Apr 2008
    Posts
    2,276

    Re: Problem with website layout

    Try to reset your Layout.

    Resetting the following properties to their default value in a separate rule set will reset (or undo) Layout:

    • width, height (to 'auto')
    • max-width, max-height (to 'none') (in IE 7)
    • position (to 'static')
    • float (to 'none')
    • overflow (to 'visible') (in IE 7)
    • zoom (to 'normal')
    • writing-mode (from 'tb-rl' to 'lr-tb')

    Hope so it may help you out.

Similar Threads

  1. Replies: 3
    Last Post: 31-07-2013, 11:26 AM
  2. big problem with youtube website?
    By Shyam Krishna in forum Technology & Internet
    Replies: 2
    Last Post: 12-05-2012, 01:16 PM
  3. problem loading website at first try
    By mkkumar in forum Technology & Internet
    Replies: 8
    Last Post: 27-01-2012, 03:53 PM
  4. Problem with Samsung Website
    By Aadi in forum Technology & Internet
    Replies: 1
    Last Post: 16-12-2008, 05:24 PM
  5. There is a problem with this website's security certificate.
    By hatred in forum Small Business Server
    Replies: 3
    Last Post: 18-06-2008, 05:51 PM

Tags for this Thread

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
  •  
Page generated in 1,713,286,913.37751 seconds with 16 queries