Quote:
Originally Posted by RbnJrg
You need to set a "width" and "height" for the bird, specially if you are going to use a pseudo-element (in this case, ::before). Kindle (.kf8/.KFX formats, is ok Hitch?  ) supports pseudo-element, so you can use it (if you wish).
In that case, you'll need to use something like:
Code:
.bird::before {
display: block;
content: url("../Images/bird.png");
position: relative;
width: your_width_here;
height: your_height_here;
top: ?; /* try to locate the best top */
left: ?; /* idem above */
}
Regards
Rubén
|
Yup, it's fine for KF8/KFX, but of course, it's ixnay for the other, KF7. That will...lemme see...you'll either get a big mess, or it won't appear altogether. I would recommend a MQ making it hidden, for KF7, methinks.
Hitch