|
|
|
The HTML for the format digests does not include the proper CSS to style the background color of the forum digest e-mail. The ID "email" needs to be included. Modify /htdocs/mod/forum/lib.php at line 598:
Original code:
$posthtml .= "</head>\n<body>\n";
Fixed code:
$posthtml .= "</head>\n<body id=\"email\">\n";
|
|
Description
|
The HTML for the format digests does not include the proper CSS to style the background color of the forum digest e-mail. The ID "email" needs to be included. Modify /htdocs/mod/forum/lib.php at line 598:
Original code:
$posthtml .= "</head>\n<body>\n";
Fixed code:
$posthtml .= "</head>\n<body id=\"email\">\n";
|
Show » |
|
I see the CSS in the standard theme, nestled in the "Modules: Forum" section:
#email .unsubscribelink {
margin-top:20px;
border-width: 0px 1px 0px 0px;
border-style: solid;
text-align:center;
}
but a search of the Moodle code base doesn't turn up any references to id="email". Is the style no longer used, or was in inadvertently omitted at some point? I'm guessing on the later. I'm attaching a patch to tweak this under 1.9.1.
Ken