PDA

View Full Version : What did I mess up?


toekneebullard
03-29-2006, 11:01 AM
I've spent hours looking though files trying to figure out what variable I messed up. if you got to standrewslifeteen.org (http://www.standrewslifeteen.org) and click the link under the mini calendar, you get a full sized calendar, but the width is funny. What file should I look in for the width variable that I seemed to have screwed up?

Thanks for your help!
Tony

Brian
03-29-2006, 11:04 AM
Look in the theme/default/esstyle.css for:

.mainTableTOC {
background-color: #FFFFFF;
border: 1px solid #BBBBBB;
width: 705px;
table-layout: fixed;
}

toekneebullard
03-29-2006, 01:04 PM
checked that...but it's already set to 705.

Brian
03-29-2006, 02:42 PM
It looks like the table you've put the TOC mode in is set to 680 Px

<table width="680" align="center">

neubeedoo
03-29-2006, 02:49 PM
Hi Tony -

This page: http://www.standrewslifeteen.org/calendar/fullcalendar.php

Links to this css: http://www.standrewslifeteen.org/calendar/theme/default/esstyle.css

Which has this as of 2:30pm ET:

mainTableTOC {
background-color: #a09e8f;
border: 1px solid #BBBBBB;
width: 440px;
table-layout: fixed;
}


It is set to 440 not 705.
(confirmed by firefox's display block size:
table .mainTableTOC 440x621

Change it to 705 and remember to reupload that css file to the server!

Cheers!

neubeedoo
03-29-2006, 02:57 PM
There is an additional problem -

You seem to have placed the TOC calendar php code
INSIDE of a 680px table in fullcalendar.php
that is also holding your ListMode php code.

Move the TOC php code into a seperate 100% table OUTSIDE and ABOVE the
table you have set at 680 holding your listings ...
OR keep everything where it is and change the 680px table in fullcalendar.php to read 100%

toekneebullard
03-30-2006, 10:30 AM
Thanks guys! Turns out I was looking at the essstyle file in theme/system/ rather than theme/default/. All is well now. Thanks for your help!