View Full Version : how do i fix this?
carlito
August 26th, 2007, 20:18
I've been racking my brains trying to figure out how to fix this..
What's wrong with this page?
http://www.plot.org.au/productions.html
Pleaseeeee help. :P
nickcmp
August 26th, 2007, 20:31
Hi add this to the "#box3" part of your code:
height: 820px;
currently your code looks like this:
#box3 {
position: relative;
width: 100%;
background: #ffffff;
border-left: 5px solid #000000;
border-right: 5px solid #000000;
top: 20px;
}
where it should look like this:
#box3 {
position: relative;
width: 100%;
background: #ffffff;
border-left: 5px solid #000000;
border-right: 5px solid #000000;
top: 20px;
height: 820px;
}
(its all in style.css)
-nickcmp.com/design
GlennBeforeTime
August 26th, 2007, 22:59
Yes it would be the height of your body DIV (The div that has all of your page text and so on)
Try resizing it. If that does not work, you can run your website through W3C Validater and it will tell you what errors need fixing because it could be a HTML Syntax error.
nickcmp
August 27th, 2007, 08:51
Yes it would be the height of your body DIV (The div that has all of your page text and so on)
Try resizing it. If that does not work, you can run your website through W3C Validater and it will tell you what errors need fixing because it could be a HTML Syntax error.
No its definatley that div, because i live CSS editted it, I can show a screenshot if need be?
carlito
August 28th, 2007, 04:10
No its definatley that div, because i live CSS editted it, I can show a screenshot if need be?
Please do. I changed the code as you said, but it still came out strange at the bottom of the page. Not to mention, every page that uses that CSS has a different height, so it won't work on the all pages. I need to be able to extend box3 so it goes (in white) all the way to the end of the page. (and so it is inline with the column on the right.) But I dunno how and it's really bugging me ... :(
ChrisMorris
August 28th, 2007, 16:44
You need to edit the css sheet, it's located at
http://www.plot.org.au/style.css
and go to #box 3 and replace what you have there with what nickcmp said which is add:
#box3 {
position: relative;
width: 100%;
background: #ffffff;
border-left: 5px solid #000000;
border-right: 5px solid #000000;
top: 20px;
height: 820px;
}
Instead of what you currently have in there. This will take care of that issue. I've verified it works fine.
Chris
carlito
August 31st, 2007, 01:55
You need to edit the css sheet, it's located at
http://www.plot.org.au/style.css
and go to #box 3 and replace what you have there with what nickcmp said which is add:
#box3 {
position: relative;
width: 100%;
background: #ffffff;
border-left: 5px solid #000000;
border-right: 5px solid #000000;
top: 20px;
height: 820px;
}
Instead of what you currently have in there. This will take care of that issue. I've verified it works fine.
Chris
Well, yes, it works for that page. But if I go to another part of the website that has a longer text content - e.g. http://www.plot.org.au/about_us.html - the table content stops too short! Gah how do I fix this? Surely there is some sort of 100% height function?
carlito
September 4th, 2007, 08:06
OK I *think* I've fixed the problem now thanks guy. -)
Powered by vBulletin® Version 4.1.7 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.