If you use the Tatzelwurm's database from the WoltLab Community and if yu use different custom styles you'll maybe have had the problem that some informations in the database are not readable - namely it are the containers using the classes
dldbColumnMarkTitle and
dldbColumnMarkContent.
The problem ist that these classes have obviously no css-declarations. So the declarations have to be made in the style.
I've chosen to use the following declarations:
|
Cascading style sheet
|
1
2
|
.dldbColumnMarkTitle {color: $container2.font.color$; background: $container2.background.color$;}
.dldbColumnMarkContent {color: $container1.font.color$; background: $container1.background.color$;}
|
The class
dldbColumnMarkTitle is (as you may have guessed) the one, that's containing the title of the information - I've given it the background and font color of container 2;
the class
dldbColumnMarkContent contains the content of the entry - they receive the background and font color of container 1.
You can use these declarations in any style without problems because I used variables.
Edit: According to
Snake the developer is informed about the issue.