View previous topic :: View next topic |
Author |
Message |
wainaia
Joined: 25 Aug 2004 Posts: 2
|
Posted: Wed Aug 25, 2004 4:43 am Post subject: Help! I want to know how to fix this problem!!!!! |
|
|
Okay, so I didn't like having the menu in the middle of my blog (to view, go to http://www.wai-naia.com/quiescence), so I took out the code for the menu. The only problem is now my entire blog is STILL centered to the left, with a large gap on the right side where the menu used to be. How can I get rid of this?
Any help would be appreciated!
Michelle.[/url] |
|
Back to top |
|
 |
wainaia
Joined: 25 Aug 2004 Posts: 2
|
Posted: Fri Aug 27, 2004 4:03 am Post subject: |
|
|
As usual, no one ever replies in this forum. |
|
Back to top |
|
 |
Sigg3
Joined: 03 Jul 2003 Posts: 529 Location: Oslo, Norway
|
|
Back to top |
|
 |
Sigg3
Joined: 03 Jul 2003 Posts: 529 Location: Oslo, Norway
|
Posted: Fri Aug 27, 2004 2:46 pm Post subject: |
|
|
Actually, to shorten the file change from:
Code: | body {
font-family: serif; font-size: 11pt;
}
#header, H3, H4, storyTitle {
margin: 0px 0px 0.5in; width: auto;
font-weight: bold; border: none;
}
#main {
float: none; margin: 0px 10%; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; width: auto
}
#content {
margin: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; width: auto
}
#header, H3, H4, storyTitle {
margin: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px; padding-top: 0px; width: auto;
font-weight: bold; border: none;
}
#menu {
display: none;
} | to Code: | body {
font-family: serif;
font-size: 11pt;
}
#header, H3, H4, storyTitle {
margin: 0px 0px 0.5in;
font-weight: bold;
border: none;
}
#main {
float: none;
margin: 0px;
padding: 0px;
}
#content {
margin: 0px;
padding: 0px;
}
#header, H3, H4, storyTitle {
margin: 0px;
padding: 0px;
font-weight: bold;
border: none;
}
#menu {
display: none;
} |
The padding values can be stated in one decleration: padding. The same goes to borders and other elements/selectors/whatever.
All auto values are default if nothing else is stated in the css. _________________ Sigg3 dot net - because you're worth it! | b2 Cafelog Resource Center |
|
Back to top |
|
 |
Sigg3
Joined: 03 Jul 2003 Posts: 529 Location: Oslo, Norway
|
|
Back to top |
|
 |
|