dear developers,
i've been trying to find the function, which builds the basic outer table of the course page. i need to mark the three columns ids because i want to color the backgrounds of the both outer columns differently with css.
are there simple basic rules, how and where the tables for all the pages are build?
any hints are welcome, thanks.
urs
Which function builds the outer table for the course page?
Number of replies: 4Re: Which function builds the outer table for the course page?
There is some relevant info in this post:
Re: Which function builds the outer table for the course page?
hello david,
thanks for the link.
you discussed coloring the sideblocks. i want to color the whole column, which is the left and right cell of the outer table. therefore i need to patch the td-tags with id's to make them "stylable" with css.
you know, i try to do 1.5 css-styling future stuff now.
greetings
urs
thanks for the link.
you discussed coloring the sideblocks. i want to color the whole column, which is the left and right cell of the outer table. therefore i need to patch the td-tags with id's to make them "stylable" with css.
you know, i try to do 1.5 css-styling future stuff now.
greetings
urs
Re: Which function builds the outer table for the course page?
Coloring the sideblocks and the column background uses the same principle e.g. assuming you use <td id="leftcolumn">
then this should work:
#leftcolumn {
background-color: red;
}
But you can also be more specific and style things within these columns differently too e.g.:
#leftcolumn table { border: thick solid red; }
#leftcolumn td { border: thin dashed red; }
#middlecolumn table { border: thick solid green; }
#middlecolumn td { border: thin dashed green; }
#rightcolumn table { border: thick solid blue; }
#rightcolumn td { border: thin dashed blue; }
I think the relevant places to change in those file's I listed are relatively easy to find, though you may need a minimum familiarity with PHP.
Re: Which function builds the outer table for the course page?
thanx david,
i had been looking at many files but not at those three "format" ones
the index.php for the start page i already changed - those three where missing.
urs
i had been looking at many files but not at those three "format" ones
urs