Book Image

MediaWiki Skins Design

Book Image

MediaWiki Skins Design

Overview of this book

Table of Contents (16 chapters)
MediaWiki Skins Design
Credits
About the Author
About the Reviewer
Preface

What Remains to be Styled


JazzMeet's on-line styling is also reasonable for a printable version of the wiki, but we can still make some modifications to it.

The printable version of our wiki's pages looks good at the moment, but we can make them a little easier to read when we print them by removing the colors in tables and table of contents.

Content

Any text surrounded with<strong> or<b> tags in JazzMeet still appear red, so we need to reset this for the printable version of our wiki:

#globalWrapper strong, #globalWrapper b {
color: #000000 !important;
}

Table of Contents

After styling the table of contents for JazzMeet, the print version's styling for the table of contents is overwritten:

We can use !important statements in the existing CSS to ensure that the colors are overwritten. Just in case, we will also set the color of the content in the table of contents to black:

#toc {
border:1px solid #aaaaaa !important;
background-color:#f9f9f9 !important;
color: #000000 !important...