Main Menu

Display HTML

Started by silvia, August 31, 2009, 02:18:39 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

silvia

hello again,
I have my brand new timetable generated for this school year, and it's wonderful :-)
What I would like to know is if there is a way to show groups html without the columns when there are 2 or more simultaneous activities. I get something like this:

1r Batx -1      |      1r Batx -2      | 1r Batx -3
Optativa2       |    optativa2 | Optativa2
Física, Hora B |       CCTerra       |Lit Cat      
Carolina           | Conxita       |Toni
LBIO              |      LFIS          |A15      


This display makes my timetables veeery wide, and I cant print them in 1 page. Is there a way that I can eliminate those columns?

I have tried to edit the css file, but the only thing I can find is to hide teachers, groups, subjects or activity tags. I can't find where the columns are generated. Call me dumb :-)

Volker Dirr

yes, the css file is the right file to modify things like that.

don't forget to go into FET->settings->html level
i recommend to increase that value (i use always html level 5)
the disadvantage is that the filesize increase, but the advantage is that you can do more styling.

diffuclt to say how to save exactly space in your time if i can't see it.
i normaly hide all activity tags, because others don't need to see them.

you can also try to reduce the font size. (please have a look into manual)

you can also try to hide that lines you are talking about, but i fear it will not help to much. go into css file and search this lines:
td.detailed {
 border: 1px dashed silver;
 border-bottom: 0;
 border-top: 0;
}

modify them to this:
td.detailed {
 border: 0;
 border-bottom: 0;
 border-top: 0;
}

you can also collapse the table a little bit more. search this lines:
table {
 page-break-before: always;
 text-align: center;
}
and modify them to this:
table {
 page-break-before: always;
 text-align: center;
 border-spacing: 0;
 border-collapse: collapse;
}

silvia

thanks very much for the ideas. I'll try to collapse the table, because even if I don't show the students group, I still need to show the subject and tag, and teacher. that makes the table very wide. If you don't mind I'll send you the students html so you can see what i mean :-)

P.S. I'll try tomorrow because it's bed time. in fact, it's past bed time. Blame the football :-)

silvia

I've tried all this but I still get the bloody columns. bearing in mind that I have up to 5 optional subjects at the same time, that makes 5 columns x 5 days, a veeery wide timetable (even printing in landscape). Any other ideas? How was this displayed in older versions of fet? I remember last year these optional subjects were displayed one under the other. Is there any way to go back to that, at least for the groups with this problem?


Thanks a lot.

Volker Dirr

if you sent me your file also sent me the css file.
or better: sent the fet file.

if you want to print like last year, just go into fet->settings and disable "print activities with same starting time". (of course you need the generate (a solution) again.)