Little stuck on CSS prob.
-
I”m trying to fix up my “contact” page. I’ve modularized the code (header, content, footer) and it works great, but I’ m a little stuck with the layout.
https://tekmonki.com/kontakt.php
The footer is riding halfway up the page. In IE the form is all out of whack and sliding underneath the subscriptions box. Where should I be putting this code?
Right now for the content section, I created:
‘<div id=”content”>
<div id=”post”>
<div id=”subform”>
‘
stuck the form in that subform div and then styled:
‘div#subform {
float: left;
border: 1x solid #000;
margin: 0px 0px 0px 0px;
padding: 5px;
}
#subform p {
font-weight: bold;
color: #4c6486;
text-align: right;
font-size: 110%;
margin: 0px;
}
‘
How do I get it to play nice? Do I have it in a bad div or something?
- The topic ‘Little stuck on CSS prob.’ is closed to new replies.