Strange Theme issues

Strange Theme issues

by Lee Geering -
Number of replies: 2
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?


Attachment MoodleExample.png
Average of ratings: -
In reply to Lee Geering

Re: Strange Theme issues

by nathan bingham -
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
Attachment css.jpg
In reply to Lee Geering

Re: Strange Theme issues

by Ian G -

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;}