View Single Post
Old 05-10-2016, 02:04 PM   #4
AlanHK
Guru
AlanHK ought to be getting tired of karma fortunes by now.AlanHK ought to be getting tired of karma fortunes by now.AlanHK ought to be getting tired of karma fortunes by now.AlanHK ought to be getting tired of karma fortunes by now.AlanHK ought to be getting tired of karma fortunes by now.AlanHK ought to be getting tired of karma fortunes by now.AlanHK ought to be getting tired of karma fortunes by now.AlanHK ought to be getting tired of karma fortunes by now.AlanHK ought to be getting tired of karma fortunes by now.AlanHK ought to be getting tired of karma fortunes by now.AlanHK ought to be getting tired of karma fortunes by now.
 
AlanHK's Avatar
 
Posts: 681
Karma: 929286
Join Date: Apr 2014
Device: PW-3, iPad, Android phone
Here's a complete TOC file with 2 links:
Code:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
  "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title>Contents</title>
  <link href="../Styles/page_styles.css" type="text/css" rel="stylesheet"/>
  <link href="../Styles/stylesheet.css" type="text/css" rel="stylesheet"/>
</head>

<body>
  <div class="sgc-toc-title">
    Contents
  </div>

  <div class="sgc-toc-level-1">
    <a href="../Text/chap-01.html">First Chapter</a>
  </div>

  <div class="sgc-toc-level-1">
    <a href="../Text/chap-02.html">Second Chapter</a>
  </div>
</body>
</html>
Select both links and apply uppercase button in book view:

Code:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
  "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title>Contents</title>
  <link href="../Styles/page_styles.css" type="text/css" rel="stylesheet"/>
  <link href="../Styles/stylesheet.css" type="text/css" rel="stylesheet"/>
</head>

<body>
  <div class="sgc-toc-title">
    Contents
  </div>

  <div class="sgc-toc-level-1">
    <div class="sgc-toc-level-1">
      <font color="#0000ee">FIRST CHAPTER</font>
    </div>

    <div class="sgc-toc-level-1">
      <font color="#0000ee">SECOND CHAPTER</font>
    </div>
  </div>
</body>
</html>
Links are gone, replaced by font colour tags.
AlanHK is offline   Reply With Quote