View Single Post
Old 08-27-2022, 04:57 PM   #24
retiredbiker
Evangelist
retiredbiker ought to be getting tired of karma fortunes by now.retiredbiker ought to be getting tired of karma fortunes by now.retiredbiker ought to be getting tired of karma fortunes by now.retiredbiker ought to be getting tired of karma fortunes by now.retiredbiker ought to be getting tired of karma fortunes by now.retiredbiker ought to be getting tired of karma fortunes by now.retiredbiker ought to be getting tired of karma fortunes by now.retiredbiker ought to be getting tired of karma fortunes by now.retiredbiker ought to be getting tired of karma fortunes by now.retiredbiker ought to be getting tired of karma fortunes by now.retiredbiker ought to be getting tired of karma fortunes by now.
 
retiredbiker's Avatar
 
Posts: 451
Karma: 3886916
Join Date: May 2013
Location: Ontario, Canada
Device: Kindle KB, Oasis, Pop_Os!, Kobo Forma
Quote:
Originally Posted by kcarscadden View Post
I am interested in this behavior in the editor, but cannot reproduce it. Should the cursor be in the file preview panel or the edit panel? When you hold down the control key, where is 'Style= ' to click on?

Keith
That initial instruction about clicking on "style=" was probably a mistake, because as JSWolf says, that's poor usage. It should be "class=". Here is an example.

Here is a sentence in the code/editing section:

Code:
<p class="calibre_8">Inside the cab the seats were patched and smelt of overheated dog.</p>
If you ctrl-click on the <p class="calibre_8"> bit, it should take you into the css file at "calibre_8, like this:

Code:
.calibre_8 {
  display: block;
  font-size: 1em;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0.1em;
  margin-left: 0;
  text-align: left;
  text-indent: 2em;
}
Where you can find the text-align value for that class.
retiredbiker is offline   Reply With Quote