Quote:
Originally Posted by bookgobrrr
Ok so I changed *all* instances of where I saw "color: rgb(0,0,0);" to read color: inherit;
There were also other some rgb values.
This seemed to have done the trick! Thanks.
|
You figured it out while I was typing.
Quote:
Originally Posted by bookgobrrr
Now I just want to find out how to makes images responsive... Any tips on how to make .epub's as adaptable as possible?
|
One good way to have your images adapting to the screen size is to use a value in percentage, like this:
Code:
img.big {
width: 100%;
height: auto;
}
Code:
img.small {
width: 30%;
height: auto;
}
You define only the width and let it adjust automatically the height, to avoid distortions.