Back

If your email is not recognized and you believe it should be, please contact us.

Forum Replies Created

Viewing 15 posts - 181 through 195 (of 325 total)
  • Author
    Posts
  • Aaron Troia
    Participant

    I’m not sure how to do it from an InDesign export, but if you were to unzip your ePub you could insert a list-style-image attribute into your list class to include a triangle image that would/should replace the standard bullets. You also might have to play with the image size and alignment to get it to look right.

    If you’re really adventurous, you could try this li:before CSS trick for using a specific embedded font glyph, I’m not sure if its supported anywhere but it might be worth a try to check: https://codepen.io/mburnette/pen/rdGJc

    Anyway, hope that helps,

    Aaron

    in reply to: A problem with popup footnotes – Epub 3 #86031
    Aaron Troia
    Participant

    Jim,

    I hope you kept a copy of the files that werent working, I tend to do so, and later try and go back and revisit them when I have time to see if I can’t get the issue resolved. Anyway, hopefully next time you dont have any issues.

    Aaron

    in reply to: EPUB Code Clean-Up of InDesign Exports #86030
    Aaron Troia
    Participant

    The best way to strip superfluous code from InDesign export is to use your own custom CSS and not export InDesign CSS. It’s still not perfect, espically on italic and bold type inline tags which InDesign does not export without a class, which drives me crazy. I know that still might not be easy to do in your case, but just thought I would pass it on.

    Aaron

    in reply to: Titles colored background not kept on ePub 2 export #86029
    Aaron Troia
    Participant

    I’m not sure how or what order InDesign exports style sheets in, but one work around that might work is saving that CSS in a custom stylesheet and importing it when you need it on export. Anyway I havent tried it, but thought it might work.

    Aaron

    in reply to: Creating a pop-up TOC #84942
    Aaron Troia
    Participant

    I’m not sure if this is possible in a reflowable EPUB, since content moves around, there really isnt a “top of the page” or margins to put something like what you’re talking about. It might be possible to do in fixed layout, but I’m just speculating and unsure of how to go about doing it.

    Aaron

    in reply to: Refreshing ePub #84640
    Aaron Troia
    Participant

    Oh that’s a pain and annoying, and yes, iBooks sees the two files as the same and just calls up the cached CSS, from the previous file. I’ve been giving each output a unique name (I have a UNIX workflow that zips and renames the files), usually with the time and date, and so far haven’t had any issues. So try changing the file name before you sync or upload to Dropbox and if you’re still having that issue try changing the time/date in the OPF.

    Aaron

    in reply to: Auto-place PDF files as images in ID – 1 per page #84578
    Aaron Troia
    Participant

    My first thought would be using data merge. I use it for books that have been scanned, merged into a PDF and need to be replaced into InDesign page by page for one reason or another. You would have to export all the PDF pages as single files and then create a CSV with the image path and copyright info lines, then data merge them into an InDesign document. It would still be a decent project getting all the info into the CSV but once there would be a solid database and info could be changed fairly easily later.

    Aaron

    in reply to: Global change to UPPERCASE #84174
    Aaron Troia
    Participant

    Dwayne,

    As someone who is in a similar position to you (I share print with a coworker but I do all the ebooks), I use Keep Together and havent noticed it causing issues on export.

    But I agree with the having the overkill paragraph style list, when you have your paragraph styles mapped to a stylesheet, it makes it so much smoother of an export if everything has a paragraph style and isnt using style overrides because those dont come through when you export to a custom stylesheet and dont generate any of InDesigns CSS. Yes it’s overkill, but it saves tons of time on the back end, especially when you’re doing both.

    Aaron

    in reply to: Indents shrinking when going from InDesign to Kindle #84158
    Aaron Troia
    Participant

    Duncan,

    Unfortunately no, there isn’t a way to change InDesign export to use different measurements. I use a custom stylesheet for all my ebook exports and prefer it, with the custom CSS I know exactly how my export is going to turn out and can modify and adjust anything that needs adjustment afterwards, but I know that’s not everyones way to do things. I wish we could use em’s in InDesign, it would make adjusting multiple paragraph styles (using Based On) on the fly so much easier.

    Aaron

    in reply to: Image stretching #83486
    Aaron Troia
    Participant

    John,

    I dont know if you found a solution to your image stretching issue, but I think I have run into this issue and I think Kevin Callahan addresses a similar issue with InDesign export CSS causing image sizing issues that might work for you, it does require unzipping the ePub and rezipping it, but I think it should fix your images from stretching on you.

    Squished images in Kindle: InDesign CSS is the culprit

    Aaron

    in reply to: Image Splitting on Kindle Fire #83485
    Aaron Troia
    Participant

    Raphael,

    This most likely has to do with the image hight exceeding the screen size. Take a look at your images and see if the height exceeds 800px, as a rule of thumb I tend to shrink all my images to 800px on the longest axis (so landscape images would be at max 800px wide, portrait images would be 800px max tall) to both save file size and keep this from happening. Anyway, make a copy of the originals and try making the images smaller and that should hopefully take care of this. Let me know if that helps (or not)!

    Aaron

    in reply to: GREP for Chapter Number? #82777
    Aaron Troia
    Participant

    Elizabeth,

    I really havent used the Chapter number variable and the times I’ve tried to play with it hoping that it would work, I ended up more confused as why it didnt work like I felt it should (probably because I dont use the Book feature in InDesign). It seems that Variables are only included in Find and not Replace so maybe they arent supported in the Replace field. That’s odd, but the only thing I can think of.

    This might be a little in a different direction, but this article seemed like it might be helpful, or at least along the same lines. They are using the Chapter number but within paragraph styles, mainly bullets and numbering, with the Text faux-GREP which actually surprised me because I never thought to use bullets and numbering this way.

    https://blog.rockymountaintraining.com/adobe-indesign-numbering-chapters-subheads-tables-figures/

    Aaron Troia
    Participant

    Clament,

    Unfortunately no, there is no way to use Em’s in InDesign like in CSS. I would love it if it did though, I would be using Em’s a lot if were integrated into paragraph and character styles.

    Aaron

    in reply to: GREP styles to add "," in numbers? #82671
    Aaron Troia
    Participant

    Hey Cindy,

    No it’s not possible to add anything in GREP styling as there is no replace field, it only allows you to apply styles to your GREP query.

    Aaron

    in reply to: GREP for Chapter Number? #82562
    Aaron Troia
    Participant

    Elizabeth,

    I’m not sure what GREP you’ve used so far but try

    Find: (Chapter )\d+
    Replace: $1~H

    That will find each instance of Chapter followed by a number (if you have a hard return after you could throw in a lookahead(?=\r) right after the \d+ in Find) and will reinsert Chapter and the space (from the capture group in the Find field) and replace the digit with the ~H chapter variable.

    Hopefully that works, let me know if you have any issues.

    Aaron

Viewing 15 posts - 181 through 195 (of 325 total)