Can you post the contents of main.css? It looks like the page uses the relative div with auto margins trick. If that's the case, then you'll see something like this:
div#wrapper {
position:relative;
width:70%;
margin-left:auto;
margin-right:auto;
}
Change width from whatever it is to 100%, that should fix your problem if I understand it correctly.
Narue
Bad Cop
15,460 posts since Sep 2004
Reputation Points: 6,464
Solved Threads: 1,401
Search the index.html file for width="763". Change it to width="100%". But I don't think it will look pretty as it seems that the page is build for a fixed width.
JoetjeF
Junior Poster in Training
67 posts since Jun 2005
Reputation Points: 15
Solved Threads: 3
>it does not appear to have any width references.
Nevermind, the layout is table driven. JoetjeF's suggestion will serve you better.
Narue
Bad Cop
15,460 posts since Sep 2004
Reputation Points: 6,464
Solved Threads: 1,401
Some development tools, such as Dreamweaver will allow you to do a find & replace of code in an entire page and an entire site. This could make changing that code much quicker.
rus
Junior Poster in Training
50 posts since Dec 2004
Reputation Points: 11
Solved Threads: 1
Breathe... exhale... breathe... exhale...
Understandable, that's why we are all here. When you changed the width from absolute (a defined number like 800 pixels) to percentage it was probably only in the tag. If the table cells (the tag is ) has the width predefined as absolute, the you can chage your table to what ever you want and it won't make a difference. I should have mentioned this when I gave you the Dreamweaver advise.
Anyhow, if you have more time than money (like a lot of us) and want to dig a little deeper, you could figure out what the percentage would be for each of the table cells and do the same find/replace.
rus
Junior Poster in Training
50 posts since Dec 2004
Reputation Points: 11
Solved Threads: 1
>I just "don't have the powerrrr"
You can't look through a text file and change 763 to 100%? :rolleyes:
Narue
Bad Cop
15,460 posts since Sep 2004
Reputation Points: 6,464
Solved Threads: 1,401
I wouldn't change the width of the button TDs, look and see if that is a nested table (a table within a table). If so, the nested table will be inside of it's own TD, just align that to the right, center, or whatever looks best.
rus
Junior Poster in Training
50 posts since Dec 2004
Reputation Points: 11
Solved Threads: 1