 | Re: Site & Forum |  |
Posted: 08/13/2007 12:46 AM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 6:12 PM
Location: St Pete, FL
|

|
|
|
|
 |
You would want to search for main tables and look for the width settings. On your forum, the width will either be set to 100% or some strange number such as 608, 750, 800, etc...
It might be easier to set a template variable in the page_header.php file so that you would only have to edit all the files once to change the hardcoded table width value to variable. That way you could change the setting once in the page_header.php file and it would adjust the table widths in all of your files. You could do it something like this:
OPEN
page_header.php
FIND
| Code:
|
|
$template->assign_vars(array(
|
AFTER, ADD
| Code:
|
|
'FORUM_WIDTH' => '750',
|
Then in your tpl files, you could do something like this:
OPEN
templates/freeMind/all of your tpl files...
FIND
IN-LINE FIND
IN-LINE REPLACE WITH
| Code:
|
|
width="{FORUM_WIDTH}"
|
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Site & Forum |  |
Posted: 08/13/2007 1:25 AM |
|
|
|
|
|
| Hawk |
| Posts |
193 |
| Word Cnt. |
9,285 |
| BDay |
Jun 8 |
| Sign |
Gemini |
| Sex |
 |
|
|
|
Joined: Apr 25, 2007
Local time: 6:12 AM
Location: Esperance, Australia
|

|
|
|
|
 |
Sweet, ill add it now  |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Site & Forum |  |
Posted: 08/13/2007 1:33 AM |
|
|
|
|
|
| Hawk |
| Posts |
193 |
| Word Cnt. |
9,285 |
| BDay |
Jun 8 |
| Sign |
Gemini |
| Sex |
 |
|
|
|
Joined: Apr 25, 2007
Local time: 6:12 AM
Location: Esperance, Australia
|

|
|
|
|
 |
| Sorry, but where is page_header.php located? |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Site & Forum |  |
Posted: 08/13/2007 1:45 AM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 6:12 PM
Location: St Pete, FL
|

|
|
|
|
 |
That would be in your includes folder...
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Site & Forum |  |
Posted: 08/13/2007 6:09 AM |
|
|
|
|
|
| Hawk |
| Posts |
193 |
| Word Cnt. |
9,285 |
| BDay |
Jun 8 |
| Sign |
Gemini |
| Sex |
 |
|
|
|
Joined: Apr 25, 2007
Local time: 6:12 AM
Location: Esperance, Australia
|

|
|
|
|
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Site & Forum |  |
Posted: 08/14/2007 12:11 AM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 6:12 PM
Location: St Pete, FL
|

|
|
|
|
 |
The only page that appears not to be displaying properly in IE is the viewtopic_body page. It was displaying correctly in Opera and Firefox though...
The first problem that I see is that your header and footer image backgrounds aren't being displayed as transparent in IE6. They display correctly in Opera and Firefox though. Look at the white in the 4 corners using IE:
I corrected those for you using Jasc PSP:
The next problem I saw was that there were page errors in the top menu. I removed the following to get rid of the error since none of these functions were declared in the overall_header.tpl file:
| Code:
|
|
onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Briefing Room','','http://pegasus-outpost.com/images/button_links/briefingroom_ top_over.jpg',1)"
|
To get the viewtopic body to display correctly in IE, I had to make the following adjustment:
OPEN
templates/freeMind/viewtopic_body.tpl
FIND
| Code:
|
|
<td width="100%"><a href="{postrow.U_MINI_POST}">
|
REPLACE WITH
| Code:
|
|
<td><a href="{postrow.U_MINI_POST}">
|
It should be displaying correctly now without any page errors...
 |
|
|
 |
 |
| Back to Top |
|
|
 |
 | Information |  |
|