|  02-19-2014, 08:28 PM | #1 | 
| Enthusiast  Posts: 35 Karma: 10 Join Date: Jan 2013 Device: Amazon Cloud |  TABS DISAPPEAR FROM DOCUMENT - REVERT TO NO FORMATTING 
			
			Hi, I just installed the version of SIGIL for Mac Maverick and added the X-code. I have opened a previous epub and have made changes. I have manually added tabs at the beginning of each paragraph. However, when I go back to view and make more changes, THE TABS HAVE DISAPPEARED and the paragraph are no longer indented. How do I fix this??? I have gone back and re-added the tabs at the beginning for every paragraph, yet they don't stay. Help!! | 
|   |   | 
|  02-19-2014, 08:32 PM | #2 | 
| Ex-Helpdesk Junkie            Posts: 19,421 Karma: 85400180 Join Date: Nov 2012 Location: The Beaten Path, USA, Roundworld, This Side of Infinity Device: Kindle Touch fw5.3.7 (Wifi only) | 
			
			Are you doing this in code view or book view? The best way to indent each paragraph is to put the following code into the stylesheet: Code: p {text-indent:1.5em} | 
|   |   | 
|  02-19-2014, 08:33 PM | #3 | 
| Enthusiast  Posts: 35 Karma: 10 Join Date: Jan 2013 Device: Amazon Cloud | 
			
			I am doing the tabs in BOOK view.
		 | 
|   |   | 
|  02-19-2014, 08:35 PM | #4 | 
| Enthusiast  Posts: 35 Karma: 10 Join Date: Jan 2013 Device: Amazon Cloud | 
			
			I have not worked with the stylesheet before.  Where would I put the code? What line?
		 | 
|   |   | 
|  02-19-2014, 08:36 PM | #5 | 
| Well trained by Cats            Posts: 31,249 Karma: 61360164 Join Date: Aug 2009 Location: The Central Coast of California Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A | |
|   |   | 
|  02-19-2014, 08:40 PM | #6 | 
| Enthusiast  Posts: 35 Karma: 10 Join Date: Jan 2013 Device: Amazon Cloud | 
			
			Indent INDENTS the entire paragraph.  That is not what I'm trying to do.  Sample of what I am trying to do below (part of my novel). Death sucks. ( indent) I should know. I croaked once before the ultimate upchuck to face the one who knocked me off. I'd get to point the finger at the prick who put a .22mm to the back of my head. (indent ) How embarrassing. Killed by an ancient bean shooter. They should've at least used a Gatling, Revolving Carbine or AMT Automag with some blinky LEDs. But no, a dumb-ass .22. | 
|   |   | 
|  02-19-2014, 08:47 PM | #7 | 
| Enthusiast  Posts: 35 Karma: 10 Join Date: Jan 2013 Device: Amazon Cloud | 
			
			Just noticed the tabs show in code view but NOT in book view.
		 | 
|   |   | 
|  02-19-2014, 09:43 PM | #8 | 
| Well trained by Cats            Posts: 31,249 Karma: 61360164 Join Date: Aug 2009 Location: The Central Coast of California Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A | 
			
			You use 2 styles for that (typical) treatment. <p class="co">"Death Sucks.</p> <p class="normal">I should know. I croaked once before the ultimate upchuck to face the one who knocked me off. I'd get to point the finger at the prick who put a .22mm to the back of my head.</p> <p class="normal">How embarrassing. Killed by an ancient bean shooter. They should've at least used a Gatling, Revolving Carbine or AMT Automag with some blinky LEDs. But no, a dumb-ass .22. </p> /* normal paragraphs */ .normal {<other style stuff> text-indent: 1.5em; } /* chapter opener paragraphs*/ .co {<other style stuff> text-indent: 0; } | 
|   |   | 
|  02-19-2014, 09:52 PM | #9 | 
| Ex-Helpdesk Junkie            Posts: 19,421 Karma: 85400180 Join Date: Nov 2012 Location: The Beaten Path, USA, Roundworld, This Side of Infinity Device: Kindle Touch fw5.3.7 (Wifi only) | 
			
			text-indent only indents the first line of a paragraph. margin would indent the entire paragraph block. This may be a good time to learn some html+css, as you can do lots of complicated stuff with it that will make it much easier to format ebooks. | 
|   |   | 
|  02-19-2014, 10:08 PM | #10 | 
| Enthusiast  Posts: 35 Karma: 10 Join Date: Jan 2013 Device: Amazon Cloud | 
			
			I'll research how to text indent as the buttons are for margin indents.  Have not figured out how to text indent. I do know html but not css.  ( Thank you for responding eschwartz and theducks. Patrice The Unfinished | 
|   |   | 
|  02-19-2014, 10:14 PM | #11 | |
| Ex-Helpdesk Junkie            Posts: 19,421 Karma: 85400180 Join Date: Nov 2012 Location: The Beaten Path, USA, Roundworld, This Side of Infinity Device: Kindle Touch fw5.3.7 (Wifi only) | Quote: 
  keep it up and you'll be a pro in no time! An excellent resource to start learning is here: http://www.w3schools.com/css/ | |
|   |   | 
|  02-19-2014, 10:40 PM | #12 | 
| Enthusiast  Posts: 35 Karma: 10 Join Date: Jan 2013 Device: Amazon Cloud | 
			
			I hope so.  I haven't used Sigil in 6 months and it's like learning again for the first time.  Still looking for text indent documentation .... All the best Patrice | 
|   |   | 
|  02-19-2014, 10:50 PM | #13 | 
| Enthusiast  Posts: 35 Karma: 10 Join Date: Jan 2013 Device: Amazon Cloud | 
			
			Finally got to work with the code: p { text-indent: 1.2em; } But I now have to add the <P>and </p> to every paragraph. Patrice The Unfinished | 
|   |   | 
|  02-19-2014, 10:54 PM | #14 | 
| Ex-Helpdesk Junkie            Posts: 19,421 Karma: 85400180 Join Date: Nov 2012 Location: The Beaten Path, USA, Roundworld, This Side of Infinity Device: Kindle Touch fw5.3.7 (Wifi only) | 
			
			depending on what is there right now, a regex may be able to automate a lot of it.
		 | 
|   |   | 
|  02-19-2014, 11:52 PM | #15 | 
| Enthusiast  Posts: 35 Karma: 10 Join Date: Jan 2013 Device: Amazon Cloud | 
			
			I don't know what that is.    ( | 
|   |   | 
|  | 
| Tags | 
| indent, indentation, tab | 
| 
 | 
|  Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post | 
| is it possible to revert to old firmware? | ellenelle | Amazon Kindle | 6 | 04-22-2013 07:46 PM | 
| how to revert to 4.0.1 firmware? | haydnfan | Kindle Developer's Corner | 23 | 07-23-2012 01:23 AM | 
| How to revert to previous firmware? | monk127 | Kobo Tablets | 2 | 11-28-2011 02:58 AM | 
| Classic Can't revert 1.5.0 to 1.4.x on Nook classic | ddrj | Barnes & Noble NOOK | 2 | 07-03-2011 12:39 PM | 
| How to convert a Word document into a Kindle document? | PS Kindle | Kindle Developer's Corner | 2 | 12-08-2009 08:40 PM |