Tweet
FREE VIDEO - From Zero to $710,000 in 28 Days!
Neobux.com
Advertise here
+ Reply to Thread
Results 1 to 3 of 3
  1. #1
    Junior Member ippbx is on a distinguished road
    Join Date
    Sep 2009
    Posts
    1
    Rep Power
    0

    Default HTML IE6 rendering error

    The layout is the way I want it in firefox and IE7.
    I am willing to change my CSS as long as I can keep this layout.


    I am including the css code hereunder:
    PHP Code:
    body {
    font: 100% Verdana, Arial, Helvetica, sans-serif;
    background: #708F82;

    margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
    padding: 0;
    text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
    color: #000000;
    }
    p {
    text-align: left;

    }

    .twoColFixLtHdr #container {
    width: 780px; /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
    background: #8BB0A1;
    margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
    border: 1px solid #000000;
    text-align: left; /* this overrides the text-align: center on the body element. */
    }
    .twoColFixLtHdr #header {
    background: #DDDDDD;
    padding: 0px; /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
    }
    .twoColFixLtHdr #header2 {
    background: #DDDDDD;
    padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
    }
    .twoColFixLtHdr #header h1 {
    margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
    padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
    }
    .twoColFixLtHdr #sidebar1 {
    float: left; /* since this element is floated, a width must be given */
    width: 350px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
    background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
    padding: 15px 10px 15px 20px;
    height: 250px;

    }
    .twoColFixLtHdr #sidebar2 {
    float: left; /* since this element is floated, a width must be given */
    width: 370px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
    background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
    padding: 15px 10px 15px 20px;
    height: 250px;
    }
    .twoColFixLtHdr #sidebar3 {
    float: left; /* since this element is floated, a width must be given */
    width: 250px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
    background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
    padding: 15px 10px 15px 20px;
    height: 430px;
    }
    .twoColFixLtHdr #sidebar4 {
    float: left; /* since this element is floated, a width must be given */
    width: 470px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
    background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
    padding: 15px 10px 15px 20px;
    height: 430px;
    }
    .twoColFixLtHdr #sidebar5 {
    float: left; /* since this element is floated, a width must be given */
    width: 350px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
    background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
    padding: 15px 10px 15px 20px;

    height: 250px;
    }
    .twoColFixLtHdr #sidebar5 p {
    text-align: center;
    }
    .twoColFixLtHdr #sidebar5 h3 {
    text-align: center;
    }
    .twoColFixLtHdr #sidebar6 {
    float: left; /* since this element is floated, a width must be given */
    width: 370px;
    /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
    background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
    padding: 15px 10px 15px 20px;
    height: 250px;
    }
    .twoColFixLtHdr #sidebar6 p {
    text-align: center;
    }
    .twoColFixLtHdr #sidebar6 h3 {
    text-align: center;
    }
    .twoColFixLtHdr #sidebar7 {
    float: left; /* since this element is floated, a width must be given */
    width: 750px;
    /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
    background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
    padding: 15px 10px 15px 20px;
    height: 600px;
    }
    .twoColFixLtHdr #sidebar8 {
    float: left; /* since this element is floated, a width must be given */
    width: 250px;
    /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
    background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
    padding: 15px 10px 15px 20px;
    height: 650px;
    }
    .twoColFixLtHdr #sidebar9 {
    float: right; /* since this element is floated, a width must be given */
    width: 470px;
    /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
    background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
    padding: 15px 10px 15px 20px;
    height: 650px;
    }


    .twoColFixLtHdr #mainContent {
    margin: 0 0 0 0px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
    background: #EBEBEB;
    padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
    }
    .twoColFixLtHdr #footer {
    padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
    background:#DDDDDD;
    }
    .twoColFixLtHdr #footer p {
    text-align: center;
    margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
    padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
    }
    .fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
    float: right;
    margin-left: 8px;
    }
    .fltlft { /* this class can be used to float an element left in your page */
    float: left;
    margin-right: 8px;
    }
    .clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
    clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
    }
    div#navbar2 {
    height: 30px;
    width: 98%;
    margin-left: 1%;
    padding: 0px;
    background-repeat: repeat-x;
    text-align: center;
    background-image: url(navbar.jpeg);



    }
    div#navbar2 ul {
    margin: 0px;
    padding: 0px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: small;
    color: #FFFFFF;
    line-height: 30px;
    white-space: nowrap;
    font-weight: bold;
    }

    div#navbar2 li {

    list-style-type: none;
    display: inline;
    }
    div#navbar2 li a {
    text-decoration: none;
    padding: 0px 10px;

    color: #FFFFFF;
    font-weight: bold;
    }
    div#navbar2 li a:link {
    color: #FFFFFF;
    }
    div#navbar2 li a:visited {
    }

    div#navbar2 li a:hover {
    font-weight: bold;
    color: #FFFFFF;
    background-color: #003D6B;
    line-height: 30px;

    }
    div#navbar2 li a:active {
    font-weight: bold;
    color: #FFFFFF;
    background-color: #33CC66;
    }


    a {
    color: #1346C2;
    text-decoration: none;}


    a:hover {
    color: #AAAAAA;}

  2. #2
    Junior Member BlastForMe is on a distinguished road
    Join Date
    Feb 2012
    Posts
    11
    Rep Power
    0

    Default

    May you please give us more information on your problem?

  3. #3
    MFC Member xuled is on a distinguished road
    Join Date
    Sep 2012
    Posts
    247
    Rep Power
    1

    Default

    You can not make great moderation in design by php. You have to do that with html and css and a bit of javascript.

Posting Permissions

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

Advertisement

Advertise here
Advertise here

Sponsors




Increase your deposit by 30%. Expand your trading opportunities. Earn more profit!
 
FBS.com
Advertise here