How do I look at HTML & CSS of InDesign files

I'd like to change the HTML and CSS of my pages. How can I do this? Can I do this with snippets? How can I see the HTML and CSS of my various InDesign files? Is is possible?

When you export either an EPUB or HTML file, the paragraph styles, character styles, object styles, etc. are "translated" into HTML and CSS. However, it's an imperfect process because of the differences between the two types of styling.

Similar Messages

  • Any guys know how can I have a bigger thumbnail of indesign file on the bridge!

    Any guys know how can I have a bigger thumbnail of indesign file on the bridge!

    The slider works for me in Bridge CC. What version of Bridge are you using?

  • How to remove the XML attribute value in Indesign file by javascript

    Hi all,
    How to remove the XML attribute value in Indesign file.

    Try this,
    if(elm.xmlElements[i].xmlAttributes[j].name == "aid:pstyle" || elm.xmlElements[i].xmlAttributes[j].name == "aid:cstyle")
    Vandy

  • Looking for HTML,CSS,Dreamweaver books

    Hello, I will start teaching a web design class for the first time soon. I am looking for well laid out, detailed, step by step HTML, CSS, Dreamwever books with examples and implementations (activities) for my students to follow and apply as they learn new content. Website suggestions would also be perfect to use as supplemental materials.
    Any suggestions are greatly appreciated. Thanks,
    Ekrem
    [email protected]

    HTML, CSS & Web Design Theory Tutorials -
    http://www.html.net/
    http://w3schools.com/
    http://www.csstutorial.net/
    http://webdesign.tutsplus.com/sessions/web-design-theory/
    How to Develop with CSS?
    http://phrogz.net/css/HowToDevelopWithCSS.html
    Centering Pages, Images and other elements with CSS
    http://cookbooks.adobe.com/post_Centering_web_pages_and_other_elements_with_CSS-16640.html
    Creating  your first web site in DW -
    http://www.adobe.com/devnet/dreamweaver/articles/first_website_pt1.html
    Nancy O.

  • How can I use my Html/CSS Navigation bar to control an Edge Stage?

    I have an HTML/CSS navigation bar set up in my EDGE created page. The Navbar is not created in edge. I would like to use these buttons to control the stage. 
    Inside the stage the main timeline has labels and stop actions every 1.5 secs to create a horizontally sliding site.
    The labels are as follows: home, work, blog, profile, and contact. I can easily use a symbol created inside edge for example:
    sym.play("home");
    and animate a 6000px width symbol across my 1000px stage in 1000px increments.
    I do not want to use a symbol inside of edge to do this because I cannot create the effect that the html/css navbar has on mouseover inside of edge.
    So I am interested in knowing if I can use this bar to control my main timeline so I don't have to sacrifice design for functionality.
    currently the link list is setup with the standard hyperlink. What code would I use to play the stage on click of the html navbar?
    Many thanks to anyone who can help with this!
    Here is the code for the navbar:
    <div id="menu"><ul class="block-menu">
                        <li><a href="/home" class="three-d">
                                  Dynamic
                                  <span class="three-d-box"><span class="front">Dynamic</span><span class="back">Artisans</span></span>
                        </a></li>
                        <li><a href="/demos" class="three-d">
                                  Work
                                  <span class="three-d-box"><span class="front">Work</span><span class="back">Work</span></span>
                        </a></li>
                        <li><a href="/deals" class="three-d">
                                  Blog
                                  <span class="three-d-box"><span class="front">Blog</span><span class="back">Blog</span></span>
                        </a></li>
                        <li><a href="/about" class="three-d">
                                  Profile
                                  <span class="three-d-box"><span class="front">Profile</span><span class="back">Profile</span></span>
                        </a></li>
            <li><a href="/about" class="three-d">
                                  Contact
                                  <span class="three-d-box"><span class="front">Contact</span><span class="back">Contact</span></span>
                        </a></li>
              </ul>
    <span class="block-menu"></span></div>
    Full HTML:
    <!DOCTYPE html>
    <html>
    <head>
              <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
              <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
              <title>Untitled</title>
    <!--Adobe Edge Runtime-->
        <script type="text/javascript" charset="utf-8" src="workapp_edgePreload.js"></script>
        <style>
            .edgeLoad-EDGE-57204389 { visibility:hidden; }
                  .block-menu {
                                  display: block;
                                  background: #000;
                        .block-menu li {
                                  display: inline-block;
                        .block-menu li a {
                                  color: #fff;
                                  display: block;
                                  text-decoration: none;
                                  font-family: 'Passion One',Arial,sans-serif;
                                  -webkit-font-smoothing: antialiased;
                                  -moz-font-smoothing: antialiased;
                                  font-smoothing: antialiased;
                                  text-transform: uppercase;
                                  overflow: visible;
                                  line-height: 20px;
                                  font-size: 24px;
                                  padding: 15px 10px;
                        /* animation domination */
                        .three-d {
                                  -webkit-perspective: 200px;
                                  -moz-perspective: 200px;
                                  perspective: 200px;
                                  -webkit-transition: all .07s linear;
                                  -moz-transition: all .07s linear;
                                  transition: all .07s linear;
                                  position: relative;
                                  .three-d:not(.active):hover {
                                            cursor: pointer;
                                  .three-d:not(.active):hover .three-d-box,
                                  .three-d:not(.active):focus .three-d-box {
                                            -moz-transform: translateZ(-25px) rotateX(90deg);
                                            -webkit-transform: translateZ(-25px) rotateX(90deg);
                                            -o-transform: translateZ(-25px) rotateX(90deg);
                                            transform: translateZ(-25px) rotateX(90deg);
                        .three-d-box {
                                  -webkit-transition: all .3s ease-out;
                                  -moz-transition: all .3s ease-out;
                                  -ms-transition: all .3s ease-out;
                                  -o-transition: all .3s ease-out;
                                  transition: all .3s ease-out;
                                  -webkit-transform: translatez(-25px);
                                  -moz-transform: translatez(-25px);
                                  -o-transform: translatez(-25px);
                                  transform: translatez(-25px);
                                  -webkit-transform-style: preserve-3d;
                                  -moz-transform-style: preserve-3d;
                                  -ms-transform-style: preserve-3d;
                                  -o-transform-style: preserve-3d;
                                  transform-style: preserve-3d;
                                  pointer-events: none;
                                  position: absolute;
                                  top: 0;
                                  left: 0;
                                  display: block;
                                  width: 100%;
                                  height: 100%;
                        .front {
                                  -webkit-transform: rotatex(0deg) translatez(25px);
                                  -moz-transform: rotatex(0deg) translatez(25px);
                                  -o-transform: rotatex(0deg) translatez(25px);
                                  transform: rotatex(0deg) translatez(25px);
                        .back {
                                  -webkit-transform: rotatex(-90deg) translatez(25px);
                                  -moz-transform: rotatex(-90deg) translatez(25px);
                                  -o-transform: rotatex(-90deg) translatez(25px);
                                  transform: rotatex(-90deg) translatez(25px);
                                  color: #FFE7C4;
                        .front, .back {
                                  display: block;
                                  width: 100%;
                                  height: 100%;
                                  position: absolute;
                                  top: 0;
                                  left: 0;
                                  background: black;
                                  padding: 15px 10px;
                                  color: white;
                                  pointer-events: none;
                                  -moz-box-sizing: border-box;
                                  box-sizing: border-box;
        </style>
    <!--Adobe Edge Runtime End-->
    </head>
    <body>
    <div id="menu"><ul class="block-menu">
                        <li><a href="/home" class="three-d">
                                  Dynamic
                                  <span class="three-d-box"><span class="front">Dynamic</span><span class="back">Artisans</span></span>
                        </a></li>
                        <li><a href="/demos" class="three-d">
                                  Work
                                  <span class="three-d-box"><span class="front">Work</span><span class="back">Work</span></span>
                        </a></li>
                        <li><a href="/deals" class="three-d">
                                  Blog
                                  <span class="three-d-box"><span class="front">Blog</span><span class="back">Blog</span></span>
                        </a></li>
                        <li><a href="/about" class="three-d">
                                  Profile
                                  <span class="three-d-box"><span class="front">Profile</span><span class="back">Profile</span></span>
                        </a></li>
            <li><a href="/about" class="three-d">
                                  Contact
                                  <span class="three-d-box"><span class="front">Contact</span><span class="back">Contact</span></span>
                        </a></li>
              </ul>
    <span class="block-menu"></span></div>
    <div  id="Stage" class="EDGE-57204389">
    </div>
    </body>
    </html>

    I've come across this from the Edge API:
    Edge.getComposition(compId)
    Anyone having trouble with this same issue should try this:
    var targetComp = AdobeEdge.getComposition('TARGETCOMPID');
       targetComp.getStage().play();
    in their trigger or event handler.
    How I got it to work:
    <li><a href="javascript:var targetComp = AdobeEdge.getComposition('EDGE-57204389');
       targetComp.getStage().play();" class="three-d">
                                  Dynamic
                                  <span class="three-d-box"><span class="front">Dynamic</span><span class="back">Artisans</span></span>
                        </a></li>

  • How to manage multiple articles in a single InDesign file ?

    Hello all !
    Sorry if this seems stupid (it does to me) but I'm new and can't find this info in the ressources.
    I have designed a 24-page magazine in InDesign.
    I've created an alternate layout for iPad (digital publication) and everything is in order.
    But of course alle the magazine pages/articles are in the same InDesign file used to create the original print magazine.
    How can I easily separate these article in another way than manually creating on InDesign document per article !?
    Because if I create a folio and add the open InDesign document as an article, it has the whole 24 pages in it and doesn't let me select which page/article goes where.
    Thanks for your precious help, I can't wait to have a first projet to distribute to our readers.
    Antoine

    Okay so I have to create an alternate layout for each page/article ?
    Currently I have all 24 pages (A4) for the print version and 24 pages in an alternate layout for the iPad version

  • How can I get a really large (30MB) InDesign file to a PDF under 10MB?

    It's a 20-page document including dozens of photos and a few vector graphics which are .pdf or .ai, respectively. All are links, not embedded. I created the document for print, but now need a version to post on a website which has a max size of 10 MB.
    I've tried a whole bunch of things including:
    Selecting Export to Adobe PDF as "smallest file size"
    Reducing the size in Photoshop of all of the linked photos. (FYI, they now range from 1MB to 4MB)
    Saving the PDF as a reduced size PDF.
    When exporting to PDF, compressing all images down to 72 ppi. (This got me to the smallest size I've been able to get: just over 18 MB)
    Any help would be greatly appreciated.
    Thanks.
    -- Melissa

    I'm not exactly sure waht content streams are, but there are some options for them in the Cleanup section when you run the optimizer. I'd uncheck the images and fonts boxes entirely (since you've already downsampled theimages externally and I don't think you want to unembed the fonts), then look through the otions inthe other sections.
    Personally, the only thing I don't check inteh Discard Objects section is embedded page thumbanils, but all discarding them will do is remove them from the navigation pane so no major harm done, and under Dicard User Data I tend not to discard Document Information and Metadata (though I would do that to try to reduce size even more if necessary) and object data.

  • WMF Graphics Look Terrible After Re-Opening InDesign File

    I hope someone can provide the answer to this one, or at least a decent work-around.
    Very detailed schematic drawings are provided to me (the tech writer) in the form of Windows Meta-File (*.wmf) graphics.
    I must take these drawings and import them into my V.6 InDesign (CS4) files using the Place command under File.
    The graphics look fine immediately after I import them. If I print the file to PDF (Adobe 9.0) before closing the file, they look great in PDF as well.
    The problem: If I close the file and then re-open it, these schematic graphics look absolutely awful; like they "melted" or something. The many labels are completely indiscernable and blocky. Printing to a PDF does not improve the look (but doesn't seem to make it any worse though, if that's even possible).
    So the problem lies between the time I close (after saving) the file and the time I re-open it. ID is reducing the graphic quality of these WMF drawings upon saving/closing the file and I cannot find the solution.
    The technical details:
    System: PC, Windows XP Professional, Version 2002, Service Pack 2
    Adobe CS4: InDesign Version 6.04
    Thank you for your time and attention. I shall be happy to provide more detail to get this question answered.
    - WPH

    OOPS.
    Totally misread the quote. I'm going back in my hole now.
    Sorry.

  • Why does a TIF image look blurry when placed in InDesign file?

    Hi all,
    I've placed a logo in my InDesign file that I saved out of Photoshop. It appear blurry when in InDesign and I do have it set to high image quality display so that isn't the issue. It is also set as CMYK and I haven't resized it after saving from Photoshop.
    I tried saving a jpg so it would be crisper but then I have a white box behind it when placed in the InDesign file.
    Any help is greatly appreciated as I need to send it to print but can't let it go until I'm sure it won't print like a blurry mess.
    Thanks

    Sub-pixel sampling. Read up on it. you are placing your images at odd values and it gets resampled. Can be anything from the image inside the frame, the image frame itself, some styling option in ID...
    Mylenium

  • How to 'Publish' layout or extract the HTML/CSS?

    OK, I created a nice layout, how do I "Publish" it -- i.e. extract the HTML/CSS so I can use it on an actual web site page?  The "Reflow Overview" and other such Adobe "Getting Started" videos don't say and when I looked for such a thing as "Extract" or "Publish" or even "Upload" [ala Flash and/or Dreamweaver), all I found was "Save" and "Save As" which saves the Project as an arcane RFLW file.
    Since I found no other question like this on the Forum, I'm beginning to wonder if I'm missing something obvious!

    There was a recent update to a thread on this:
    How to export Edge Reflow work file to Dreamweaver
    Long story short, it will be easier to export code in the next release of Reflow. Until then you can get the HTML and CSS from the preview folder or you can get just the CSS from the code popover by clicking on the "<>" button on the bottom bar:
    Hope that helps and thanks for using Reflow,
    Chris

  • OT: Tutorial | How to author HTML, CSS, jQuery, and PHP 5.4 in Dreamweaver CC

    Hi all,
    Dreamweaver CC 2014 comes with a host of tutorials for both beginners and advanced users. In this tutorial you will learn how the latest support for HTML5, CSS3, jQuery and PHP5.4 in Dreamweaver can help you author static, dynamic, mobile or responsive projects.
    We would love to hear your opinion on this tutorial after you complete the training.
    https://helpx.adobe.com/dreamweaver/how-to/html-css-jquery-php-dreamweaver.html?scid=socia l26198776
    Thanks,
    Preran

    jlig wrote:
    > David, I just read thru the sample chapter 7 "Building
    Site Navigation with the
    > Spry Menu bar".
    > - Finally a Spry resource that is friendly , thorough
    and easy to follow
    > along.
    > - I especially like your honest comments in the "Mixed
    Blessing" section.
    Glad you found it useful. I felt it was essential to present
    a balanced
    view of Spry widgets, rather than giving a starry-eyed one.
    > Trying to adjust the Tab Colors, Fonts, CSS page sizes,
    margins, borders, etc
    > is a bit of a nightmare for me. I know it is just a
    matter of learning, but it
    > would help to have resources like yours that take all of
    the practical
    > considerations into mind for end-users.
    It is quite easy to do simple things with CSS, but it's very
    powerful,
    and has a long learning curve. Keep at it, and you'll get
    there in the end.
    > ps: How about a similiar new resource: "The Essential
    Guide to Dreamweaver
    > CS3 with ADDT, SPRY, CSS, AJAX and PHP / ColdFusion"
    I'm not a big fan of ADDT (Adobe knows my opinions, because I
    have told
    them directly). I would like to see how ADDT develops before
    committing
    to writing about it. As for ColdFusion, I experimented with
    it a long
    time ago, but decided I preferred to improve my knowledge of
    PHP before
    branching out into other fields.
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • How to convert an html/css website into muse

    How to convert an html/css website into muse.

    Hi,
    It is not possible to convert html/css site into Muse. Muse recognizes .muse files only.
    Regards,
    Aish

  • When building a web site, how do I set up a blank browser page that I can pull html & css files into.

    When building a web site, how do I set up a blank browser page that I can pull html & css files into.

    David's book is a good place to start. This is really far more involved that can be covered in this forum. You'll need to get familiar with a database, most likely MySQL, PHP, how to send requests tot he database - queries - and most likely maintain a state with Sessions. As you can see, it's a bit involved. The good news is this skills you'll acquire to do this will go a long way! It will cover all the basic requirements of web application development.
    Dive in, and have fun!
    Lawrence   *Adobe Community Expert*
    www.Cartweaver.com
    Complete Shopping Cart Application for
    Dreamweaver, available in ASP, PHP and CF
    www.twitter.com/LawrenceCramer

  • HTML/CSS match to InDesign layout

    Hello,
    I have been given the task of taking an InDesign layout from CS6, and building it in HTML/CSS. The challenging part is that it is required to be 1:1 pixel perfect. When I open it in Google Chrome–which is going to be the standard browser it’s opened in–the font raggs differently.
    When I overlay a PNG of the HTML site, and a PNG from the InDesign file it is no where close to pixel-perfect. The text wrapping differently is the main issue at hand. I have tried every CSS hack possible to adjust letter-spacing and word-spacing, I've also explored Google Fonts to attempt to get a better match.
    Does anyone have any experience with a similar ask? In CS6 you can’t specify type pixels, I’m not sure it would matter if you could, because it seems that InDesign is using it’s own conversion for what it considers a pixel.
    Please help!!!

    Agreed, it's way too optimistic. InDesign is a typographic design application, under development since 1999. Already in its very first version, its type engine came "fully grown and armed, with a shout", supporting enough advanced features to squash all but the very stubbornest competition (I'm looking at you, TeX).
    HTML/CSS, on the other hand, has had problems displaying "plain text" since its very beginnings. Only the very latest version of CSS finally addresses some typographic features (probably unnecessary to add, but anyway: with mixed results for different browsers).
    " ..it seems that InDesign is using [its] own conversion for what it considers a pixel", you bet it does. After all, there was a web crowd that outright demanded "pixels" to be a measurement unit in InDesign. Adobe did a have a stab at adding pixels, and if one would ask me, they did it the wrong way. But that's no fault in InDesign. ID has its roots firmly in the "real world", that is, you can design a document with a precision right up to the wavelength of visible light; and ID will happily produce output for it. Your "pixel", on the other -- Darker -- Side, "is" not a real thing. It has no width or height. If you think it does, it goes only for your screen. You may say, "but if necesasry I can hold a magnifier to my screen and count the itty bitty lights!" What if you do so, and discover that your screen does not consist of square pixels, but round ones, or hexagonal, or elongated rectangles? And any measurement would only be value for just your screen. What about mine, your bosses', or your client's?
    Following John's advice, here is a list of features you would need to switch off (as most are enabled by default) before you can even think of mimicking ID's sophisticated text engine in HTML:
    ligatures
    alternate characters
    real small capitals
    tabular or oldstyle figures
    .. wait -- better switch off *all* OTF features
    Paragraph composer. Use the dumb One Line At A Time And We'll See How Far We Get Composer.
    Language based hyphenation.
    Minimum/Optimal/Maximum Word Spacing (CSS must be using this internally, else it could not show justified text; however, I don't think you can set its parameters)
    Letter Spacing and Glyph Scaling (although to be fair, these seem to be already off by default).
    ~16 decimals of precision for every object, line width, text size, spacing, et cetera
    any real-world based measurement unit.
    I probably forgot a few too.
    --- add.
    Advanced character/class kerning
    Optical kerning (not enabled by default)
    -- add2.
    Balance Ragged Lines (off by default; but you can't use it)
    Optical Margin Alignment (as above)
    Align to Baseline grid
    last line indent
    Align to spine
    justify last line (can only be achieved with span/div tricks)
    tabs
    about all internal hyphenation settings (CSS allows 'none', 'manual', and 'auto')
    live text color outline (I may be mistaken, but I bet if it were possible literally everybody would be using it by now -- just like the dreaded "blink" tag did, before it was deemed illegal by federal law)
    skewed text. I know, nobody with a grain of sense uses it in ID.[*] Still, you can't do it in CSS so I'm gonna list it anyway.
    [*] Except myself, by the way. But I don't use it willy-nilly, only after exhausting all the good and the bad options; then yes, I go for the Ugly look.
    Message was edited by: [Jongware]
    Message was edited by: [Jongware]

  • How can I get rid of CSS

    OK. I am a newbie. I am a photographer and I am teaching
    myself DW 8 because none of the 4 people I hired was able to build
    a website that I could control -and add photos and descriptions
    myself.
    So, I am working on a site that has the footprints from
    several other designers.
    I thought that I had constructed/modified the site with
    tables, but I apparently still have some CSS elements in the site I
    wound up with.
    For example, others have noted that:
    >Unrelated problem, but your CSS looks to be a little
    messed up. You are linking to an invalid stylesheet, you are
    >referencing styles that are not defined, and your naming
    conventions are rather meaningless.
    and
    >..and in some of your pages you are referencing css files
    on your local drive.
    How do i identify and delete the CSS files and references -
    but keep my tables and information intact? I have only a few pages
    to work on, so manual editing of the pages is no problem now.
    At some point I will try to learn CSS - but for now I just
    want a site that works, and that I can understand and update.
    How do I get rid of CSS??? Or maybe I should ask - -Can I get
    rid of CSS?
    Dick
    http://www.naturephotostudio.com

    quote:
    Originally posted by:
    adrianTNT
    You probably need someone else to clean your code, as a note
    I think this looks wrong:
    <link href="ws2.css.LCK" rel="stylesheet"
    type="text/css">
    it should probably be without ".LCK"
    something about images:
    http://www.naturephotostudio.com/photography.html
    this is a bad practice to place large image in a site and
    forced it to re-size by html, user will still wait to load full
    image size when you could have a small image there and the image
    quality is bad when image re-size is forced. You should re-size
    images outside of html and place them in html to its original size.
    >
    Thanks very much for your reply. I will look for yet more
    help to get rid of CSS.
    I do not understand your comment on the images. I created,
    for example, dune-1120 - as a 700x695 jpeg in Photoshop CS (saved
    for the web). On my browser -Mac Safari - it IS opening as that
    size (using JustSo PictureWindow). I did not intend for it to be
    resized by HTML. i will check the other images on the various pages
    (as you noted on
    http://www.naturephotostudio.com/photography.html)
    i think that those 2 images were created at 700x700 pixels and then
    resized whe I inserted them into the table. They are only one or
    two images that do not link to full size windows, and I could
    remake them as jpegs at the final size.
    On the other hand - I see no problem with the images as is on
    my Safari browser and Mac monitors.
    I am sorry that there is no simple fix for removing all the
    CSS code. I may just start over and re-build the site from scratch
    with tables. I am not ready yet for CSS, but I need to get a site
    up and running - while doing my real job as a photographer. i am
    also tired of trying to find designers who are willing to sit in my
    studio and build the site on my local Macs so that I can run it
    form the studio.
    Dick
    http://www.naturephotostudio.com

Maybe you are looking for

  • Soap Router versus Web Service Servlet

    Hello: I am trying to understand the fundamental difference between a SOAP Router versus Web Service Servlet?. In websphere there is a concept called WSG(Web Service Gateway) on which we can configure an handler to intercept the incoming soap request

  • Error in evaluations tab of a control

    Hello Experts, In the evaluations tab of a control, when we try to open activities Monitoring, Control Effectiveness (MO, CO) it is showing the error (as shown in screenshot). But we are able to open activities related to control design and control s

  • Scary Snakes - Not On A Plane

    OK, AMC has a Kill Bill marathon. Well, maybe not a "marathon," by certain standards, as there are only two episodes. Still, I could not help but think of The Video Lounge, after the scene with Elle & Budd, and the suitcase of $. How would YOU like t

  • When I print from Gmail, I can't return to my e-mail and have to open another browser window. The back button become inactive.

    While using Gmail, when I print e-mail I can't return to my inbox or any other Gmail option. I am left "stuck" at the print window and have to open another browser window each time and go back into e-mail. Usually, I am still logged in after doing th

  • Using ipod in car

    how do i get the ipod to play thru the car stereo? i have jacks to plug into headphone, but does it have to play thru a particular radio station?