footer with css and divs
- olm75
- Proficient


- Joined: Aug 07, 2005
- Posts: 294
- Status: Offline
i am trying to have my footer stay at the bottom of the page or browser...
here is my css and the url to one of the sites page...
http://nightspotz.com/Zippfinder/contactus.php
here is my css and the url to one of the sites page...
http://nightspotz.com/Zippfinder/contactus.php
Code: [ Select ]
@charset "utf-8";
/* CSS Document */
<style type="text/css" media="all">
/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
color: #000;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
line-height: 14px;
margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
color: #000;
font-size: 14px;
font-weight: bold;
line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
color: #000;
font-size: 12px;
font-weight: bold;
line-height: 14px;
}
/* Sets the style for unvisited links. */
a, a:link {
color: #7283a5;
font-weight: bold;
text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
color: #7283a5;
font-weight: bold;
text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
color: #FF8216;
text-decoration: none;
}
/* Sets the style for a link that has focus. */
a:focus {
color: #7283a5;
text-decoration: none;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
color: #7283a5;
text-decoration: none;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
text-align: left; /* Redefines the text alignment defined by the body element. */
width: 759px;
}
#outerWrapper #header {
font-size: 18px;
font-weight: bold;
height: 190px;
line-height: 15px;
padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
background-image: url(/Zippfinder/images/smallHeaderBG.png);
background-repeat: no-repeat;
background-position: center bottom;
}
#buyProperty {
background-image: url(/Zippfinder/images/buyPropertyBox.png);
background-repeat: no-repeat;
background-position: top;
float: right;
height: 133px;
width: 190px;
margin-top: 10px;
margin-right: -1px;
}
#addProperty {
background-image: url(/Zippfinder/images/addPropertyBox.png);
background-repeat: no-repeat;
background-position: top;
float: right;
height: 133px;
width: 188px;
margin-top: 10px;
margin-right: -2px;
}
#advertiseServices {
background-image: url(/Zippfinder/images/advertiseBox.png);
background-repeat: no-repeat;
background-position: top;
float: right;
height: 133px;
width: 192px;
margin-top: 10px;
}
#outerWrapper #contentWrapper {
height: 460px;
clear: both;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
margin: 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
height: 450px;
clear: right;
}
#content {
clear: both;
height: 650px;
}
#login {
float: left;
height: 133px;
width: 180px;
margin-top: 10px;
margin-right: 0px;
margin-bottom: 0px;
margin-left: 0px;
background-image: url(/Zippfinder/images/loginBox.png);
background-repeat: no-repeat;
background-position: left top;
}
#outerWrapper #footer {
height: 70px;
padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
clear: right;
}
#becomeInvestor {
background-image: url(/Zippfinder/images/becomeInvestorBox.png);
background-repeat: no-repeat;
background-position: top;
height: 95px;
width: 374px;
margin-top: 15px;
float: right;
clear: right;
}
#loanApp {
background-image: url(/Zippfinder/images/loanAppBox.png);
background-repeat: no-repeat;
height: 95px;
width: 374px;
float: right;
margin-top: 15px;
background-position: top;
clear: both;
}
#sideMenu {
position: absolute;
width: 215px;
margin-left: -15px;
float: left;
clear: none;
margin-top: 15px;
}
#bodyContents {
font-size: 12px;
font-style: normal;
line-height: normal;
vertical-align: text-top;
text-align: left;
padding-top: 0px;
padding-right: 15px;
padding-bottom: 0px;
padding-left: 15px;
text-indent: 10px;
width: 500px;
float: right;
margin-top: 15px;
margin-right: 10px;
margin-bottom: 0px;
margin-left: 0px;
height: 440px;
}
#sideMenu li {
color: #FF8216;
font-weight: normal;
font-size: 14px;
list-style-type: circle;
font-style: normal;
list-style-position: outside;
}
#sideMenuHeader {
height: 20px;
font-size: 15px;
font-weight: bold;
padding-left: 25px;
line-height: 30px;
}
#logo {
background-image: url(/Zippfinder/images/logo.png);
background-repeat: no-repeat;
float: left;
height: 82px;
width: 67px;
margin-left: 12px;
margin-top: 35px;
}
#logoText {
background-image: url(/Zippfinder/images/logoText.png);
background-repeat: no-repeat;
float: left;
height: 20px;
width: 154px;
margin-top: 48px;
margin-left: 7px;
}
#commercialBox {
background-image: url(/Zippfinder/images/commercialBox.png);
background-repeat: no-repeat;
float: right;
height: 84px;
width: 256px;
margin-top: 17px;
margin-right: 15px;
}
#residetialBox {
background-image: url(/Zippfinder/images/residentialBox.png);
background-repeat: no-repeat;
height: 84px;
width: 256px;
margin-top: 17px;
margin-left: 140px;
float: left;
}
.style4 {
color: #7283a5;
font-size: 16px;
font-weight: bold;
}
.style1 {color: #7283a5}
#navBar {
float: right;
height: 75px;
width: 500px;
font-family: "Times New Roman", Times, serif;
font-style: normal;
color: #7283a5;
font-weight: bold;
font-size: 12px;
}
.style5 {
font-size: 15px;
font-weight: bold;
font-style: normal;
color: #FF7F14;
}
.style2 {
font-size: 12px;
font-weight: normal;
font-style: normal;
color: #FF7F14;
}
.style3 {color: #7283A5}
</style>
<style type="text/css" media="print">
/* It is common to set printer friendly styles such as a white background with black text. */
body {
background-color: #fff;
background-image: none;
border-color: #000; /* Sets the border color properties for an element using shorthand notation */
color: #000;
}
#loanApp {
background-image: url(/Zippfinder/images/loanAppBox.png);
background-repeat: no-repeat;
background-position: top;
height: 95px;
width: 374px;
margin-top: 15px;
clear: right;
float: right;
}
</style>
/* CSS Document */
<style type="text/css" media="all">
/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
color: #000;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
line-height: 14px;
margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
color: #000;
font-size: 14px;
font-weight: bold;
line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
color: #000;
font-size: 12px;
font-weight: bold;
line-height: 14px;
}
/* Sets the style for unvisited links. */
a, a:link {
color: #7283a5;
font-weight: bold;
text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
color: #7283a5;
font-weight: bold;
text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
color: #FF8216;
text-decoration: none;
}
/* Sets the style for a link that has focus. */
a:focus {
color: #7283a5;
text-decoration: none;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
color: #7283a5;
text-decoration: none;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
text-align: left; /* Redefines the text alignment defined by the body element. */
width: 759px;
}
#outerWrapper #header {
font-size: 18px;
font-weight: bold;
height: 190px;
line-height: 15px;
padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
background-image: url(/Zippfinder/images/smallHeaderBG.png);
background-repeat: no-repeat;
background-position: center bottom;
}
#buyProperty {
background-image: url(/Zippfinder/images/buyPropertyBox.png);
background-repeat: no-repeat;
background-position: top;
float: right;
height: 133px;
width: 190px;
margin-top: 10px;
margin-right: -1px;
}
#addProperty {
background-image: url(/Zippfinder/images/addPropertyBox.png);
background-repeat: no-repeat;
background-position: top;
float: right;
height: 133px;
width: 188px;
margin-top: 10px;
margin-right: -2px;
}
#advertiseServices {
background-image: url(/Zippfinder/images/advertiseBox.png);
background-repeat: no-repeat;
background-position: top;
float: right;
height: 133px;
width: 192px;
margin-top: 10px;
}
#outerWrapper #contentWrapper {
height: 460px;
clear: both;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
margin: 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
height: 450px;
clear: right;
}
#content {
clear: both;
height: 650px;
}
#login {
float: left;
height: 133px;
width: 180px;
margin-top: 10px;
margin-right: 0px;
margin-bottom: 0px;
margin-left: 0px;
background-image: url(/Zippfinder/images/loginBox.png);
background-repeat: no-repeat;
background-position: left top;
}
#outerWrapper #footer {
height: 70px;
padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
clear: right;
}
#becomeInvestor {
background-image: url(/Zippfinder/images/becomeInvestorBox.png);
background-repeat: no-repeat;
background-position: top;
height: 95px;
width: 374px;
margin-top: 15px;
float: right;
clear: right;
}
#loanApp {
background-image: url(/Zippfinder/images/loanAppBox.png);
background-repeat: no-repeat;
height: 95px;
width: 374px;
float: right;
margin-top: 15px;
background-position: top;
clear: both;
}
#sideMenu {
position: absolute;
width: 215px;
margin-left: -15px;
float: left;
clear: none;
margin-top: 15px;
}
#bodyContents {
font-size: 12px;
font-style: normal;
line-height: normal;
vertical-align: text-top;
text-align: left;
padding-top: 0px;
padding-right: 15px;
padding-bottom: 0px;
padding-left: 15px;
text-indent: 10px;
width: 500px;
float: right;
margin-top: 15px;
margin-right: 10px;
margin-bottom: 0px;
margin-left: 0px;
height: 440px;
}
#sideMenu li {
color: #FF8216;
font-weight: normal;
font-size: 14px;
list-style-type: circle;
font-style: normal;
list-style-position: outside;
}
#sideMenuHeader {
height: 20px;
font-size: 15px;
font-weight: bold;
padding-left: 25px;
line-height: 30px;
}
#logo {
background-image: url(/Zippfinder/images/logo.png);
background-repeat: no-repeat;
float: left;
height: 82px;
width: 67px;
margin-left: 12px;
margin-top: 35px;
}
#logoText {
background-image: url(/Zippfinder/images/logoText.png);
background-repeat: no-repeat;
float: left;
height: 20px;
width: 154px;
margin-top: 48px;
margin-left: 7px;
}
#commercialBox {
background-image: url(/Zippfinder/images/commercialBox.png);
background-repeat: no-repeat;
float: right;
height: 84px;
width: 256px;
margin-top: 17px;
margin-right: 15px;
}
#residetialBox {
background-image: url(/Zippfinder/images/residentialBox.png);
background-repeat: no-repeat;
height: 84px;
width: 256px;
margin-top: 17px;
margin-left: 140px;
float: left;
}
.style4 {
color: #7283a5;
font-size: 16px;
font-weight: bold;
}
.style1 {color: #7283a5}
#navBar {
float: right;
height: 75px;
width: 500px;
font-family: "Times New Roman", Times, serif;
font-style: normal;
color: #7283a5;
font-weight: bold;
font-size: 12px;
}
.style5 {
font-size: 15px;
font-weight: bold;
font-style: normal;
color: #FF7F14;
}
.style2 {
font-size: 12px;
font-weight: normal;
font-style: normal;
color: #FF7F14;
}
.style3 {color: #7283A5}
</style>
<style type="text/css" media="print">
/* It is common to set printer friendly styles such as a white background with black text. */
body {
background-color: #fff;
background-image: none;
border-color: #000; /* Sets the border color properties for an element using shorthand notation */
color: #000;
}
#loanApp {
background-image: url(/Zippfinder/images/loanAppBox.png);
background-repeat: no-repeat;
background-position: top;
height: 95px;
width: 374px;
margin-top: 15px;
clear: right;
float: right;
}
</style>
- @charset "utf-8";
- /* CSS Document */
- <style type="text/css" media="all">
- /* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
- html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
- margin: 0;
- padding: 0;
- border: 0;
- outline: 0;
- font-size: 100%;
- }
- /* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
- body {
- color: #000;
- font-family: Arial, Helvetica, sans-serif;
- font-size: 12px;
- line-height: 14px;
- margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
- padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
- text-align: center; /* Centers the page content container in IE 5 browsers. */
- }
- /* Commonly used to style page titles. */
- h1 {
- color: #000;
- font-size: 14px;
- font-weight: bold;
- line-height: 14px;
- }
- /* Commonly used to style section titles. */
- h2 {
- color: #000;
- font-size: 12px;
- font-weight: bold;
- line-height: 14px;
- }
- /* Sets the style for unvisited links. */
- a, a:link {
- color: #7283a5;
- font-weight: bold;
- text-decoration: none;
- }
- /* Sets the style for visited links. */
- a:visited {
- color: #7283a5;
- font-weight: bold;
- text-decoration: none;
- }
- /* Sets the style for links on mouseover. */
- a:hover {
- color: #FF8216;
- text-decoration: none;
- }
- /* Sets the style for a link that has focus. */
- a:focus {
- color: #7283a5;
- text-decoration: none;
- }
- /* Sets the style for a link that is being activated/clicked. */
- a:active {
- color: #7283a5;
- text-decoration: none;
- }
- /* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
- #outerWrapper {
- margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
- text-align: left; /* Redefines the text alignment defined by the body element. */
- width: 759px;
- }
- #outerWrapper #header {
- font-size: 18px;
- font-weight: bold;
- height: 190px;
- line-height: 15px;
- padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
- background-image: url(/Zippfinder/images/smallHeaderBG.png);
- background-repeat: no-repeat;
- background-position: center bottom;
- }
- #buyProperty {
- background-image: url(/Zippfinder/images/buyPropertyBox.png);
- background-repeat: no-repeat;
- background-position: top;
- float: right;
- height: 133px;
- width: 190px;
- margin-top: 10px;
- margin-right: -1px;
- }
- #addProperty {
- background-image: url(/Zippfinder/images/addPropertyBox.png);
- background-repeat: no-repeat;
- background-position: top;
- float: right;
- height: 133px;
- width: 188px;
- margin-top: 10px;
- margin-right: -2px;
- }
- #advertiseServices {
- background-image: url(/Zippfinder/images/advertiseBox.png);
- background-repeat: no-repeat;
- background-position: top;
- float: right;
- height: 133px;
- width: 192px;
- margin-top: 10px;
- }
- #outerWrapper #contentWrapper {
- height: 460px;
- clear: both;
- }
- /* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
- #outerWrapper #contentWrapper #content {
- margin: 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
- padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
- height: 450px;
- clear: right;
- }
- #content {
- clear: both;
- height: 650px;
- }
- #login {
- float: left;
- height: 133px;
- width: 180px;
- margin-top: 10px;
- margin-right: 0px;
- margin-bottom: 0px;
- margin-left: 0px;
- background-image: url(/Zippfinder/images/loginBox.png);
- background-repeat: no-repeat;
- background-position: left top;
- }
- #outerWrapper #footer {
- height: 70px;
- padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
- clear: right;
- }
- #becomeInvestor {
- background-image: url(/Zippfinder/images/becomeInvestorBox.png);
- background-repeat: no-repeat;
- background-position: top;
- height: 95px;
- width: 374px;
- margin-top: 15px;
- float: right;
- clear: right;
- }
- #loanApp {
- background-image: url(/Zippfinder/images/loanAppBox.png);
- background-repeat: no-repeat;
- height: 95px;
- width: 374px;
- float: right;
- margin-top: 15px;
- background-position: top;
- clear: both;
- }
- #sideMenu {
- position: absolute;
- width: 215px;
- margin-left: -15px;
- float: left;
- clear: none;
- margin-top: 15px;
- }
- #bodyContents {
- font-size: 12px;
- font-style: normal;
- line-height: normal;
- vertical-align: text-top;
- text-align: left;
- padding-top: 0px;
- padding-right: 15px;
- padding-bottom: 0px;
- padding-left: 15px;
- text-indent: 10px;
- width: 500px;
- float: right;
- margin-top: 15px;
- margin-right: 10px;
- margin-bottom: 0px;
- margin-left: 0px;
- height: 440px;
- }
- #sideMenu li {
- color: #FF8216;
- font-weight: normal;
- font-size: 14px;
- list-style-type: circle;
- font-style: normal;
- list-style-position: outside;
- }
- #sideMenuHeader {
- height: 20px;
- font-size: 15px;
- font-weight: bold;
- padding-left: 25px;
- line-height: 30px;
- }
- #logo {
- background-image: url(/Zippfinder/images/logo.png);
- background-repeat: no-repeat;
- float: left;
- height: 82px;
- width: 67px;
- margin-left: 12px;
- margin-top: 35px;
- }
- #logoText {
- background-image: url(/Zippfinder/images/logoText.png);
- background-repeat: no-repeat;
- float: left;
- height: 20px;
- width: 154px;
- margin-top: 48px;
- margin-left: 7px;
- }
- #commercialBox {
- background-image: url(/Zippfinder/images/commercialBox.png);
- background-repeat: no-repeat;
- float: right;
- height: 84px;
- width: 256px;
- margin-top: 17px;
- margin-right: 15px;
- }
- #residetialBox {
- background-image: url(/Zippfinder/images/residentialBox.png);
- background-repeat: no-repeat;
- height: 84px;
- width: 256px;
- margin-top: 17px;
- margin-left: 140px;
- float: left;
- }
- .style4 {
- color: #7283a5;
- font-size: 16px;
- font-weight: bold;
- }
- .style1 {color: #7283a5}
- #navBar {
- float: right;
- height: 75px;
- width: 500px;
- font-family: "Times New Roman", Times, serif;
- font-style: normal;
- color: #7283a5;
- font-weight: bold;
- font-size: 12px;
- }
- .style5 {
- font-size: 15px;
- font-weight: bold;
- font-style: normal;
- color: #FF7F14;
- }
- .style2 {
- font-size: 12px;
- font-weight: normal;
- font-style: normal;
- color: #FF7F14;
- }
- .style3 {color: #7283A5}
- </style>
- <style type="text/css" media="print">
- /* It is common to set printer friendly styles such as a white background with black text. */
- body {
- background-color: #fff;
- background-image: none;
- border-color: #000; /* Sets the border color properties for an element using shorthand notation */
- color: #000;
- }
- #loanApp {
- background-image: url(/Zippfinder/images/loanAppBox.png);
- background-repeat: no-repeat;
- background-position: top;
- height: 95px;
- width: 374px;
- margin-top: 15px;
- clear: right;
- float: right;
- }
- </style>
- Anonymous
- Bot


- Joined: 25 Feb 2008
- Posts: ?
- Loc: Ozzuland
- Status: Online
March 4th, 2008, 2:42 pm
- Bogey
- Bogey


- Joined: Jul 14, 2005
- Posts: 8211
- Loc: USA
- Status: Offline
- olm75
- Proficient


- Joined: Aug 07, 2005
- Posts: 294
- Status: Offline
- Bogey
- Bogey


- Joined: Jul 14, 2005
- Posts: 8211
- Loc: USA
- Status: Offline
You put it in the CSS which defines the footer class/id. Such as...
But if you tried that for the footer and it didn't work than I don't know... make a top margin or something... clear: both; for the footer works just fine and dandy with me...
Code: [ Select ]
#footer {
clear: both;
}
clear: both;
}
- #footer {
- clear: both;
- }
But if you tried that for the footer and it didn't work than I don't know... make a top margin or something... clear: both; for the footer works just fine and dandy with me...
"Bring forth therefore fruits meet for repentance:" Matthew 3:8
- digitalMedia
- a.k.a. dM


- Joined: Dec 29, 2003
- Posts: 5169
- Loc: SC-USA
- Status: Offline
- Benat
- Mastermind


- Joined: Jul 19, 2004
- Posts: 2123
- Status: Offline
Quick Fix...
Change the bodycontents CSS to this.
But dM is right.
Change the bodycontents CSS to this.
Code: [ Select ]
#bodyContents {
font-size: 12px;
font-style: normal;
line-height: normal;
vertical-align: text-top;
text-align: left;
padding; 15px 0 15px 0;
text-indent: 10px;
width: 500px;
float: right;
margin: 0 15px 0 10px;
height: 500px;
}
font-size: 12px;
font-style: normal;
line-height: normal;
vertical-align: text-top;
text-align: left;
padding; 15px 0 15px 0;
text-indent: 10px;
width: 500px;
float: right;
margin: 0 15px 0 10px;
height: 500px;
}
- #bodyContents {
- font-size: 12px;
- font-style: normal;
- line-height: normal;
- vertical-align: text-top;
- text-align: left;
- padding; 15px 0 15px 0;
- text-indent: 10px;
- width: 500px;
- float: right;
- margin: 0 15px 0 10px;
- height: 500px;
- }
But dM is right.
JOIN OZZU'S FACEBOOK GROUP!
- olm75
- Proficient


- Joined: Aug 07, 2005
- Posts: 294
- Status: Offline
- digitalMedia
- a.k.a. dM


- Joined: Dec 29, 2003
- Posts: 5169
- Loc: SC-USA
- Status: Offline
- olm75
- Proficient


- Joined: Aug 07, 2005
- Posts: 294
- Status: Offline
- digitalMedia
- a.k.a. dM


- Joined: Dec 29, 2003
- Posts: 5169
- Loc: SC-USA
- Status: Offline
Page 1 of 1
To Reply to this topic you need to LOGIN or REGISTER. It is free.
Post Information
- Total Posts in this topic: 11 posts
- Users browsing this forum: No registered users and 115 guests
- You cannot post new topics in this forum
- You cannot reply to topics in this forum
- You cannot edit your posts in this forum
- You cannot delete your posts in this forum
- You cannot post attachments in this forum
