We are having a problem with a custom theme in Moodle, parts of the table used to display the contents of a course get filled while other parts stay the same colour as the background. (See screenshot attached) we would like the white to continue across as it looks like it should. Any suggestions on what we need to change to fix this?
Hi Lee,
I am currently playing with a theme for my school at the moment. I use firefox and have downloaded the web developer toolbar.
http://chrispederick.com/work/web-developer/
All i do to find out the css code that needs changing is turn on view stylesheet information and click on the area. I then copy out the code from the side view and paste it into my overiding css file.
Hope this helps
Nathan
I am currently playing with a theme for my school at the moment. I use firefox and have downloaded the web developer toolbar.
http://chrispederick.com/work/web-developer/
All i do to find out the css code that needs changing is turn on view stylesheet information and click on the area. I then copy out the code from the side view and paste it into my overiding css file.
Hope this helps
Nathan

The table that comprises the center column content has a ID attached to it called "middle-column". If you look at the source code you will see it.
<td id="middle-column">
So, add the following style to your custom theme and you should get a white background.
#middle-column {background-color: #FFF;}