Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Formats > ePub

Notices

Reply
 
Thread Tools Search this Thread
Old 06-24-2020, 11:04 AM   #136
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 79,147
Karma: 144284184
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
I have seen <hr/> used for a section break marker to have a thin line. It works pretty well.
JSWolf is online now   Reply With Quote
Old 06-24-2020, 11:41 AM   #137
Turtle91
A Hairy Wizard
Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.
 
Turtle91's Avatar
 
Posts: 3,312
Karma: 20171571
Join Date: Dec 2012
Location: Charleston, SC today
Device: iPhone 15/11/X/6/iPad 1,2,Air & Air Pro/Surface Pro/Kindle PW & Fire
I think what the accessibility group was getting at, was that software can be programmed to recognize an <hr/> and treat it differently than the <p> or <div>. Visually it doesn't make a difference, but the standards that support accessibility should be followed.

Using their 2nd example, I was able to include images, or fleurons, within the <hr/>. It actually became easier/shorter to code as well.

I previously used this when inserting a scene break:
Code:
<div class="ChDiv"><img alt="" src="../Images/fleur.gif"/></div>
Now I can use:
Code:
<hr class="ChDiv"/>
and the CSS for <hr> is fairly straight forward:
Code:
hr.ChDiv {
  border:none; 
  margin:1.25em auto; height:.5em;
  background: transparent url("../Images/fleur.gif") no-repeat center;
  background-size: auto 100%;
  overflow: hidden;
  page-break-inside: avoid;
  break-inside: avoid;
}
Turtle91 is online now   Reply With Quote
Old 06-24-2020, 11:49 AM   #138
Hitch
Bookmaker & Cat Slave
Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.
 
Hitch's Avatar
 
Posts: 11,503
Karma: 158448243
Join Date: Apr 2010
Location: Phoenix, AZ
Device: K2, iPad, KFire, PPW, Voyage, NookColor. 2 Droid, Oasis, Boox Note2
Quote:
Originally Posted by Turtle91 View Post
I think what the accessibility group was getting at, was that software can be programmed to recognize an <hr/> and treat it differently than the <p> or <div>. Visually it doesn't make a difference, but the standards that support accessibility should be followed.

Using their 2nd example, I was able to include images, or fleurons, within the <hr/>. It actually became easier/shorter to code as well.

I previously used this when inserting a scene break:
Code:
<div class="ChDiv"><img alt="" src="../Images/fleur.gif"/></div>
Now I can use:
Code:
<hr class="ChDiv"/>
and the CSS for <hr> is fairly straight forward:
Code:
hr.ChDiv {
  border:none; 
  margin:1.25em auto; height:.5em;
  background: transparent url("../Images/fleur.gif") no-repeat center;
  background-size: auto 100%;
  overflow: hidden;
  page-break-inside: avoid;
  break-inside: avoid;
}
Dion, dear, since I'm a lazy old thing, can you slap the sample ePUB/MOBI in here? That contains that test code?

Hitch
Hitch is offline   Reply With Quote
Old 06-24-2020, 11:50 AM   #139
Turtle91
A Hairy Wizard
Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.
 
Turtle91's Avatar
 
Posts: 3,312
Karma: 20171571
Join Date: Dec 2012
Location: Charleston, SC today
Device: iPhone 15/11/X/6/iPad 1,2,Air & Air Pro/Surface Pro/Kindle PW & Fire
Quote:
Originally Posted by Hitch View Post
Scroll down on that page; they disagree. (About CSS/margins, etc. FWIW, I agree with you.) And why on earth does one empty paragraph somehow "signal" that something's going to change? Have they LOOKED at the average, typical, DIY from-Word self-published book?
Quote:
Why shouldn't I use CSS to increase padding or margins to get the same effect?
Although you may get the same visual effect, the user is given no information that a change in context has occurred. CSS class names carry no semantic meaning.

Print-first workflow tools often use this CSS technique to indicate context changes when exporting, but it is inherently inaccessible.
I was a little confused over that too...but I think they are referring to using margins this way:
Code:
.SecBrk {margin-top:2em}

<p>Para before the break/</p>
<p class="SecBrk">Para at the break.</p>
<p>Para after the break.</p>
I don't think they were trying to justify the empty paragraphs. (at least that's the way I choose to interpret it to preserve my sense of a well ordered world! )
Turtle91 is online now   Reply With Quote
Old 06-24-2020, 12:03 PM   #140
Turtle91
A Hairy Wizard
Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.
 
Turtle91's Avatar
 
Posts: 3,312
Karma: 20171571
Join Date: Dec 2012
Location: Charleston, SC today
Device: iPhone 15/11/X/6/iPad 1,2,Air & Air Pro/Surface Pro/Kindle PW & Fire
Quote:
Originally Posted by Hitch View Post
Dion, dear, since I'm a lazy very busy old thing revered elder??, can you slap the sample ePUB/MOBI in here? That contains that test code?

Hitch
Sure thing!

The first fleuron is using my <div> method, the second is using the <hr>.
Attached Thumbnails
Click image for larger version

Name:	hr.png
Views:	417
Size:	169.7 KB
ID:	180148  
Attached Files
File Type: epub hr.epub (8.8 KB, 455 views)
Turtle91 is online now   Reply With Quote
Old 06-24-2020, 12:23 PM   #141
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 79,147
Karma: 144284184
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by Turtle91 View Post
I was a little confused over that too...but I think they are referring to using margins this way:
Code:
.SecBrk {margin-top:2em}

<p>Para before the break/</p>
<p class="SecBrk">Para at the break.</p>
<p>Para after the break.</p>
I don't think they were trying to justify the empty paragraphs. (at least that's the way I choose to interpret it to preserve my sense of a well ordered world! )
Your section break should be padding-top: and not margin-top:. The reason being that padding works when the section break is at the bottom/top of the screen where as margin does not work so well at the bottom/top of the screen.
JSWolf is online now   Reply With Quote
Old 06-24-2020, 12:28 PM   #142
Hitch
Bookmaker & Cat Slave
Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.
 
Hitch's Avatar
 
Posts: 11,503
Karma: 158448243
Join Date: Apr 2010
Location: Phoenix, AZ
Device: K2, iPad, KFire, PPW, Voyage, NookColor. 2 Droid, Oasis, Boox Note2
Quote:
Originally Posted by Turtle91 View Post
Sure thing!

The first fleuron is using my <div> method, the second is using the <hr>.
Thanks, bud.

I'll take a look. We try--we do--to address usability and all that, but sometimes, they kinda make me want to scream. I mean...we have a book in with 654 images. (sigh). And of course, the author didn't put in title or meta info!

Hitch
Hitch is offline   Reply With Quote
Old 06-24-2020, 01:00 PM   #143
Turtle91
A Hairy Wizard
Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.
 
Turtle91's Avatar
 
Posts: 3,312
Karma: 20171571
Join Date: Dec 2012
Location: Charleston, SC today
Device: iPhone 15/11/X/6/iPad 1,2,Air & Air Pro/Surface Pro/Kindle PW & Fire
Quote:
Originally Posted by JSWolf View Post
Your section break should be padding-top: and not margin-top:. The reason being that padding works when the section break is at the bottom/top of the screen where as margin does not work so well at the bottom/top of the screen.
You can certainly use padding if you wish. The use of margin here was simply an example of what the article was referring to...they were talking about margins, so I used margins.
Turtle91 is online now   Reply With Quote
Old 06-24-2020, 03:25 PM   #144
DaleDe
Grand Sorcerer
DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.
 
DaleDe's Avatar
 
Posts: 11,470
Karma: 13095790
Join Date: Aug 2007
Location: Grass Valley, CA
Device: EB 1150, EZ Reader, Literati, iPad 2 & Air 2, iPhone 7
I noticed that the image examples don't fill in the alt entry. This, if it were filled in, would identify the break automatically.

Dale
DaleDe is offline   Reply With Quote
Old 06-24-2020, 05:06 PM   #145
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 79,147
Karma: 144284184
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by Turtle91 View Post
You can certainly use padding if you wish. The use of margin here was simply an example of what the article was referring to...they were talking about margins, so I used margins.
I used to use margins for section breaks. I forget where I picked up padding instead of margins for section breaks. But padding does work must better.
JSWolf is online now   Reply With Quote
Old 06-24-2020, 05:55 PM   #146
Turtle91
A Hairy Wizard
Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.
 
Turtle91's Avatar
 
Posts: 3,312
Karma: 20171571
Join Date: Dec 2012
Location: Charleston, SC today
Device: iPhone 15/11/X/6/iPad 1,2,Air & Air Pro/Surface Pro/Kindle PW & Fire
Quote:
Originally Posted by DaleDe View Post
I noticed that the image examples don't fill in the alt entry. This, if it were filled in, would identify the break automatically.

Dale
I don't think it identifies a scene-break. It is simply an alternate display if the image is not available, correct?

If you used: alt="Scene Break" it would simply display "Scene Break" in place of the image. The added benefit is an accessibility device would read the words "Scene Break" aloud.

I don't know exactly how accessibility devices treat a scene break differently, perhaps someone here can explain better??
Turtle91 is online now   Reply With Quote
Old 06-24-2020, 07:27 PM   #147
DaleDe
Grand Sorcerer
DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.
 
DaleDe's Avatar
 
Posts: 11,470
Karma: 13095790
Join Date: Aug 2007
Location: Grass Valley, CA
Device: EB 1150, EZ Reader, Literati, iPad 2 & Air 2, iPhone 7
Quote:
Originally Posted by Turtle91 View Post
I don't think it identifies a scene-break. It is simply an alternate display if the image is not available, correct?

If you used: alt="Scene Break" it would simply display "Scene Break" in place of the image. The added benefit is an accessibility device would read the words "Scene Break" aloud.

I don't know exactly how accessibility devices treat a scene break differently, perhaps someone here can explain better??
Why wouldn't the image be available? It is for reading out loud and can be anything you want. Yes "scene break" might be the thing you would want it to say.

Dale
DaleDe is offline   Reply With Quote
Old 06-24-2020, 10:07 PM   #148
Tex2002ans
Wizard
Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.
 
Posts: 2,306
Karma: 13057279
Join Date: Jul 2012
Device: Kobo Forma, Nook
Quote:
Originally Posted by JSWolf View Post
I used to use margins for section breaks. I forget where I picked up padding instead of margins for section breaks. But padding does work must better.
The margin/padding difference was if it occurs at the very top of a screen when you move to next page.

Margins got eaten, padding stays.

Quote:
Originally Posted by DaleDe View Post
I noticed that the image examples don't fill in the alt entry. This, if it were filled in, would identify the break automatically.
alt="" (or alt="*") is the correct choice.

See Example 8, WebAIM "Alternative Text":

Quote:
Decorative images do not present important content, are used for layout or non-informative purposes, and do not appear within a link. In almost all cases, spacer and decorative images should have null alt text (alt="").

Quote:
What would be the appropriate alt attribute for horizontal separator image in Example 8?

A. "decorative line"
B. "Beginning of footer"
C. "separator"
D. alt="" will suffice

Because the image does not convey content and is not within a link, option D is the most appropriate choice. A description of the image is not appropriate.
Note
When an image is used only for decorative purposes, it is often best to remove the image from the page content and add it as a background image using CSS. This will remove the need for alternative text at all and will remove the image from the semantic and structural flow of the page.
Quote:
Originally Posted by DaleDe View Post
Why wouldn't the image be available? It is for reading out loud and can be anything you want. Yes "scene break" might be the thing you would want it to say.
I think that's why HTML5 pushed for using <hr> in this case instead.

If that HTML5Doctor article was correct, it would be the same as if you did </section><section>.

<section> is a new HTML5 tag, and allows users to navigate more easily (similar to headings):

https://developer.mozilla.org/en-US/...lement/section

So let's say in a Fiction book, each scene could be in its own <section>:

Code:
<section>
	<h2>Chapter 1</h2>
	<p>The green cow woke up, [...]</p>
</section>
<section>
	<p class="scenebreak">* * *</p> <--- (or <img> here)
	<p>Stumbling through the meadow, [...]</p>
</section>
Or, (I think), equivalent would be this:

Code:
<section>
	<h2>Chapter 1</h2>
	<p>The green cow woke up, [...]</p>
	
	<hr class="scenebreak" />
	
	<p>Stumbling through the meadow, [...]</p>
</section>
and then you can load a decorative image via CSS, like Turtle91 pointed out.

This would still allow a blind reader to hop to the next section, just like they could jump to the next <h2> or chapter.

* * *

Nowadays, on more modern browsers, there's the Accessibility Tree + ARIA:

ARIA (Accessible Rich Internet Applications) lets you assign labels/roles, and nudge the browser in certain ways. Like you can tell the browser "these are navigation links":

Spoiler:
Code:
<div role="navigation">
<ul>
	<li><a href="HomePage.xhtml">Home</a></li>
	<li><a href="Forums.xhtml">Forums</a></li>
	<li><a href="About.xhtml">About</a></li>
</ul>
</div>


A screen reader can then treat those differently than your typical links within an article.

The Accessibility Tree lets you see the semantics and innards behind code... and the HTML5 tags, by default, already map to ARIA stuff. This is one of the reasons why semantics is much more important.

Side Note: Of course, you can also go in the complete opposite direction and begin bungling it up "when trying to be helpful" and over-assigning ARIA roles/labels. Again, this is why it's a little better to err on the side of KISS.

One of the blogs I love to read is "Marco's Accessibility Blog". He's a blind web developer and has done a ton of coding and enhancements for Mozilla/Google/WordPress/NVDA. And since he's blind... he explains all the typical pitfalls/pain-points.

Last edited by Tex2002ans; 06-24-2020 at 11:13 PM.
Tex2002ans is offline   Reply With Quote
Old 06-25-2020, 09:09 AM   #149
Land_Outcast
Enthusiast
Land_Outcast rocks like Gibraltar!Land_Outcast rocks like Gibraltar!Land_Outcast rocks like Gibraltar!Land_Outcast rocks like Gibraltar!Land_Outcast rocks like Gibraltar!Land_Outcast rocks like Gibraltar!Land_Outcast rocks like Gibraltar!Land_Outcast rocks like Gibraltar!Land_Outcast rocks like Gibraltar!Land_Outcast rocks like Gibraltar!Land_Outcast rocks like Gibraltar!
 
Posts: 43
Karma: 100000
Join Date: Jun 2018
Device: none
Quote:
Originally Posted by Turtle91 View Post
Yes, I also use this technique when I don't want, or can't have, a visual representation on the page but still need the structural definition of a header...and the functionality of an auto-generated TOC.

eg.
Code:
<h2 title="Copyright" style="display:none" />
For what it is worth, I just discovered “display:none” in a heading (h#) generates problems in conversion to kindle format:

Quote:
["E24010: Hyperlink not resolved in toc (One possible reason can be that the link points to a tag with style display:none):/tmp/mobi-1Mmqfm/OEBPS/Text/EBOOK_PAEZ_VILARO-Entre_mi_hijo_y_yo_la_luna-1.xhtml#_idParaDest-1", "E24001: The table of content could not be built.", "W14001: Hyperlink not resolved: /tmp/mobi-1Mmqfm/OEBPS/Text/EBOOK_PAEZ_VILARO-Entre_mi_hijo_y_yo_la_luna-1.xhtml#_idTextAnchor000", "W14002: Some hyperlinks could not be resolved."]

Last edited by Land_Outcast; 06-25-2020 at 12:41 PM.
Land_Outcast is offline   Reply With Quote
Old 06-25-2020, 10:56 AM   #150
Hitch
Bookmaker & Cat Slave
Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.Hitch ought to be getting tired of karma fortunes by now.
 
Hitch's Avatar
 
Posts: 11,503
Karma: 158448243
Join Date: Apr 2010
Location: Phoenix, AZ
Device: K2, iPad, KFire, PPW, Voyage, NookColor. 2 Droid, Oasis, Boox Note2
Quote:
Originally Posted by Land_Outcast View Post
For what it is worth, I just discovered “display:none” in a h1 generates problems in conversion to kindle format:
YES. I've been meaning to mention that, but it's been bonkers at my office so my answers/posts over here are quick/scant. For mobi, via KP, it's ixnay on the hidden-ay.

Hitch
Hitch is offline   Reply With Quote
Reply

Tags
semantic markup


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Span Span Span Sigil cleaning up indesign blackest Sigil 31 12-06-2017 10:16 AM
Span Span Span Span MULTIVAC ePub 7 12-06-2014 08:58 AM
Nested Span? Turtle91 ePub 4 05-20-2013 02:47 PM
span in span: is this problematic? tbuyus ePub 8 03-31-2013 08:01 AM
Remove <br /> together with span, and only span Razzia Recipes 3 05-30-2011 06:55 PM


All times are GMT -4. The time now is 01:02 PM.


MobileRead.com is a privately owned, operated and funded community.