View Single Post
Old 02-16-2025, 09:52 AM   #10363
JimmXinu
Plugin Developer
JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.
 
JimmXinu's Avatar
 
Posts: 7,003
Karma: 4604635
Join Date: Dec 2011
Location: Midwest USA
Device: Kobo Clara Colour running KOReader
Quote:
Originally Posted by ThreeLizards View Post
I'm still trying to get a few things working on the title page. I noticed that you had the wide titlepage entry and that's for like tables. So basically it'd be columns right? So how would I set one up for having word count, published date, updated date, and chapters all on one line? and possibly kudos, hits, and bookmarks too.
Wide entries only matter if you're using titlepage_use_table:true.

That's some really old code from the early days--as a new user, I wouldn't try to use it. Tables are basically deprecated in HTML.

You're better off using CSS. And you can add ${id} to titlepage_entry if you want to be able to style individual elements:

Code:
titlepage_entry:
 <dt class="${id}"><b>${label}:</b></dt> <dd class="${id}">${value}</dd>

yields:

<dt class="numWords"><b>Words:</b></dt> <dd class="numWords">1,454</dd>
Quote:
Originally Posted by ThreeLizards View Post
Oh, and I seem to have lost the summary? It's not showing up on the title page anymore.
It shows for me using your code. But you need <hr> not </hr> to get the rule.

FYI, please wrap ini blocks in [code] tags when posting to preserve formatting. It matters.

Quote:
Originally Posted by ThreeLizards View Post
And, one more thing, if you don't mind, could I have it say Additional Tags: for the tags? How would I change that? Would that be a simple extravalid entry thing?
You can change the labels settings.
JimmXinu is online now   Reply With Quote