Quote:
Originally Posted by Leonatus
[...]But what makes me wonder is that the code I use makes no problem on other devices, only on the Clara. I suspect that there is a sort of Kobo pre-setting that causes the issue rather than an erroneous code. [...]
|
Yes, that might also be true for other e-readers. I always start my CSS by making sure that the ones I want to change will initially start at their default values by explicitly resetting them.
Code:
* {
margin: 0;
padding: 0;
line-height: normal;
text-decoration: none;
...
etc.
}
However, it is by no means guaranteed that this will always and everywhere work