• hello everybody ,
    i have problem –
    computer with 800X600 resolution cant see my all site in internet explorer
    my website : http://deven.co.il/
    in google chrome the user can move right to see the side bar ,
    but it cant in explorer , what can i do to change it?

Viewing 2 replies - 1 through 2 (of 2 total)
  • edit style.css, and find:

    #page {
    	background-color: white;
    	margin: 20px auto;
    	padding: 0;
    	width: 760px;
    	border: 1px solid #959596;
    	}

    change the padding line to padding: 0 160px 0 0;.

    the style should then look like:

    #page {
    	background-color: white;
    	margin: 20px auto;
    	padding: 0 160px 0 0;
    	width: 760px;
    	border: 1px solid #959596;
    	}

    this does not totally resolve the display problems in IE, but is should bring the sidebar into the scrolling range.

    (untested in IE)

    Thread Starter tallevi12

    (@tallevi12)

    i changed it
    still dosent work

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘resolution problem’ is closed to new replies.