Quote:
Originally Posted by kcarscadden
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.