Thanks for your offer.
Maybe sometimes it's not the best idea to update an existing system ... I'm not so familar with updating python modules, maybe the problem is located elsewhere, maybe my mistake ... otherwise I have to consider a complete new installation of the software ...
To see the problem, I created a simple new epub called "sample.epub".
I use my original stylesheet and linked it ... a span class "bluebold" (see below) is defined in the styleheet, but the formatting
span.bluebold {
color: #0066cc;
font-weight: bold;
}
won't appear in the preview - any idea what could be the cause?
Best wishes, Frank
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:epub="http://www.idpf.org/2007/ops">
<head>
<title></title>
<link href="../Styles/sgc-nav.css" type="text/css" rel="stylesheet"/>
</head>
<body>
<p>saasa</p>
<span class="bluebold">Some Text</span>
</body>
</html>
|