Import Text vs Styles

Hi guys,
I pretend to work nice and tidy with text. I decided to work with Paragraph Styles as much as i can. I will use
Font: Mercury Text
Size: 10,5 pt
Leading: 13 leading
Font Style: Regular
However, the word file has not a consistent Style Formatting and include various Italics and Bold fonts inside. If i import the text i can select all and then apply Mercury Text which will allow me to keep my Italics and Bold characters. I cannot make a Parragraph style without assigning a Regular/Italic or Bold style within. Any Parragraph Style will override my imported italics bolds and so on.
Maybe there is a easier solution to this. Any ideas?
Thanks,
Sebs

Depending on what version - CS2, CS3, CS4 use Preservelocalformatting.jsx http://www.indesignsecrets.com/downloads/PreserveLocalFormatting.jsx
Or PREPTEXT.JSX http://forums.adobe.com/thread/429756
How To
http://indesignsecrets.com/how-to-install-scripts-in-indesign.php
In regards to the first link - copy the text to Notepad or TextWrangler (not word or other processor) and save it as a .jsx file
When you import text to InDesign, imeddiately run the script  on the text. It will apply character styles to the text. Then you just have to apply your paragraph style.

Similar Messages

  • InDesign erroneously applies character style to imported text

    For a year, I had been importing text into InDesign with little trouble until this problem starting happening and I can't figure out why.
    Let's say I have a CS3 file with defined character and paragraph styles.
    If I draw an empty text box, InDesign shows the character style "superscript" and paragraph style "ext_all" are applied. I can select "Break Link to Style," but if I import text into that box, the "superscript" character style is applied.
    The following happens whether I create a text box first or not:
    If I import a styled Word file, all the text comes in styled "superscript" until it reaches a Word character style.
    If I import an InDesign Tagged Text file, all the text comes in styled "superscript" until it reaches a character tag.
    If I import a very simple one sentence rtf file, all the text is styled "superscript."
    Anyone run into this? I've tried googling, but can't find a discussion about it. Thanks in advance!

    Perhaps you've inadvertently set those styles as the defaults? That would happen if you click on them with nothing selected. For the current document switch to the text tool and make sure there is no cursor active or text frame selected, then check to see that the character style is set to [None] and the paragraph style to what you would like to be your default. Also check the settings in the character and paragraph panels.
    To make sure this doesn't carry forward into any more new documents, if indeed that was the problem, close all documents and repeat the above steps. With no documents open your selections will become the defaults for all new work until changed.
    Peter

  • How to style text with XML import using character style that is in a group (aid:cstyle = "group1"."style1") ?

    Hello, I am using an XML file to import text into InDesign page items. Everything works well using the attribute "aid:cstyle = style1" but since the introduction of InDesign groups, our users want to use them but we do not know how to reference them in the xml attribute.
    I saw somewhere on the internet that you should use "aid:cstyle = group1:style1" or "aid:cstyle = group1|style1" but both won't work. They simply create a new ungrouped style name "group1:style1" or "group1|style1"
    So what is the right formula ?
    Thanks

    Tagged Text is nice but all the copy in your page item is one big block, no way to separate and track individual values, say in your page item you have a description and a sale price, you can't update the price without reimporting the description as well. We use many fields inside an individual page item and just as one example we need to be able to update all prices on the page without modifying anything else that shares the page items with the prices. Also XML updates you can trigger an update for the whole document in one operation, while with Tagged Text you have to "place" your text file for each individual page item you are modifying (even with scripting you call the place function as many times as you have page items). So say you have a page or document with 200 boxes across multiple layers that is a lot of individual actions.
    Anyway back to my problem.
    I've never used Mapping tas to styles before, but running some tests here I clearly don't understand it. If my text is already tagged and I map a style to a tag, it untags all my individual text elements and leaves only the page item tag, and doesn't style my text... I'm going to try and read more on this.

  • Importing text file (with file names) into Automator.. is it possible?

    Hello all,
    I have been working with Windows Batch files for my line of work. I have a couple of file names in a text file (a column), which I want to copy from one folder of one hdd to another folder on a different hdd. I have been trying to do this kind of work with a Mac. I already know how you copy and rename files in automator (which isn't difficult, of course) but you have to 'select' the files in the finder first (with get specified items).
    But the only way i see that you can specify items is by selecting them... is there a way to import a text file with all the file names instead of selecting all the file names manually?
    or is there an AppleScript alternative which I can use to import the text file (or just copy into applescript) and run before the query's of copying and renaming the files? I am kind of new to Apple programming.
    The text file looks like this:
    image1.jpg
    image2.jpg
    etc..
    so there has to be a command to: 'goto' a specific folder as well.
    Thanks in advance!

    You can import text files, but if they are just names you will need an additional action to add the source folder path. A *Run AppleScript* action can be used, for example:
    Tested workflow:
    1) *Ask for Finder Items* {Type: files } -- choose the text file containing the names
    2) *Combine Text Files* -- this gets the text file contents
    3) *Filter Paragraphs* { return paragraphs that are not empty } -- skip blank lines
    4) *Run AppleScript* -- copy and paste the following script:
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    font-weight: normal;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 680; height: 340px;
    color: #000000;
    background-color: #FFEE80;
    overflow: auto;"
    title="this text can be pasted into an Automator 'Run AppleScript' action">
    on run {input, parameters} -- add folder path
    add the specified folder path to a list of file names
    input: a list of text items (the file names)
    output: a list of file paths (aliases)
    set output to {}
    set SkippedItems to {} -- this will be a list of skipped items (errors)
    set SourceFolder to (choose folder with prompt "Choose the folder containing the file names") as text -- this is the folder containing the names
    repeat with AnItem in the input -- step through each name in the input
    try
    set AnItem to SourceFolder & AnItem -- add the prefix
    set the end of the output to (AnItem as alias) -- test
    on error number ErrorNumber -- oops
    set ErrorNumber to ("  (" & ErrorNumber as text) & ")" -- add the specific error number
    set the end of SkippedItems to (AnItem as text) & ErrorNumber
    end try
    end repeat
    ShowSkippedAlert for SkippedItems
    return the output -- pass the result(s) to the next action
    end run
    to ShowSkippedAlert for SkippedItems
    show an alert dialog for any items skipped, with the option to cancel the workflow
    parameters - SkippedItems [list]: the items skipped
    returns nothing
    if SkippedItems is not {} then
    set {AlertText, TheCount} to {"Error with AppleScript action", count SkippedItems}
    if TheCount is greater than 1 then
    set theMessage to (TheCount as text) & space & " items were skipped:"
    else
    set theMessage to "1 " & " item was skipped:"
    end if
    set {TempTID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, return}
    set {SkippedItems, AppleScript's text item delimiters} to {SkippedItems as text, TempTID}
    if button returned of (display alert AlertText message (theMessage & return & SkippedItems) ¬
    alternate button "Cancel" default button "OK") is "Cancel" then error number -128
    end if
    return
    end ShowSkippedAlert
    </pre>
    5) *Copy Finder Items* { To: _your external drive_ }

  • HOW CAN I IMPORT TEXT FROM MICROSOFT WORD TO THE WEB PAGE?

    HOW CAN I IMPORT TEXT FROM MICROSOFT WORD TO THE WEB PAGE?

    Another method is tosave your Word document as an a web page.  Then open the htm file, copy the text and paste into an HTML snippet on your web page.  Resize to show all the document and publish. It will retain the style, font and alignment of the original Word document.
    OT

  • Removing hyperlinks in imported texts

    Sometimes I import text from Wikipedia. The text contains hyperlinks to other pages in Wikipedia. They are marked in blue as hyperlinks. I would like to change them to regular text without the blue. Any suggestions?

    When pasting in text from any source that has hyperlinks, try using Paste & Match Style. This usually let's me avoid the hyperlinks I then have to clean up. Of course, you need to have hyperlink recognition disabled in preferences first.
    For text you've already pasted you could select all & then cut then Paste & Match Style.
    Message was edited by: Peggy

  • CS3 (Tiger)--imported text not reading tags--urgent, please

    CS3 is not reading the tags when I import text into my catalog template. The text file is highly formatted with lots of paragraph and character styles. This was never a problem in CS2, where the text came in properly formatted and flowed from box to box and page to page.
    Now the text is coming in unformatted, as if the tags weren't even there.
    So I tried importing to an empty document and for some reason that worked. The text imported with the proper styles. Great. So then I tried to export it anew, as a tagged file. But upon attempting to import it again into the catalog template, I got a dialog box saying: Import Failed.
    I've never seen that before either.
    What now? For now, I can of course copy and paste the successfully formatted text from the temporary document into the catalog template but that's a workaround. I have to be able to solve this. What could be messing up the tags in my catalog template -- which, by the way, has been converted from CS2 to CS3?
    Is CS3 the culprit? Is something else going on? How can I fix this? Where to begin? It doesn't help that I have an urgent deadline.
    Suggestions and advice most appreciated.
    Thanks in advance!

    No.LOLZ, omgggggggg hermione, I remember you (I am
    AU_UK)...you're the guy who always comes up with
    funny remarks...hahahaha :)
    I like your style, it is ruthless, yet without being
    nasty!!!First of all dipsh1t, Hermione is a girls name
    and secondly dipsh1t, you sound like a valley girl. omg lolz

  • Importing text from Word to ID

    Hello. Which are the best way to import text files? I mean, step by step, from Microsoft Word to ID? It is a headache when you apply an style and booom all the italics and bolds dissapear... Sometimes it works fine when i apply a style, but sometimes it does a disaster. From now, I am really curious about how indesign thinks to resolve the import cases and the work of styles.
    1) Why sometimes erase all the word local formats and sometimes does not?
    2) Is it a problem using .doc, .docx or .rtf to save text files an import?
    3) Is the problem that you work with .TTF fonts (like Arial, Times, Courier) from word and on ID you use OpenType Fonts?
    4) What is the NON-FAIL way to do an excellent import? from Microsoft Word to ID
    Thanks
    Alejandro

    yo_soy_tu_padre007 wrote:
    1) Why sometimes erase all the word local formats and sometimes does not?
    When placing, you can select to either preserve 'local' formatting or remove it. Local formatting is "anything done without using a style", just as it is in InDesign. As Ellis says, check your import settings.
    In addition, even if you 'preserve' local formatting, it's very easy to accidentally remove it in InDesign when you apply another style. If common attributes such as bold and italics are not applied through character styles in the original Word document, you should preserve them yourself by doing that in InDesign.
    2) Is it a problem using .doc, .docx or .rtf to save text files an import?
    Yes, on all three. There is no single format that InDesign works best with. If a Word document causes me trouble, I try the other options until I get not exactly the "best" result, but more accurately a "least bad".
    3) Is the problem that you work with .TTF fonts (like Arial, Times, Courier) from word and on ID you use OpenType Fonts?
    Not in the least. Actually, you can use TTF fonts as well as OTF fonts with InDesign. The import is totally indifferent of the fonts used -- it doesn't matter what you used in Word, you'll get the same fonts in the imported text. That is, except when it's bitmap fonts, which you cannot use in InDesign, or when the author italicized or bolded text in Word where the actual Bold or Italic font doesn't exist. But even then, InDesign will happily import the text -- it will just have an 'unavailable' font assigned to it, and you'll be notified of that.
    4) What is the NON-FAIL way to do an excellent import? from Microsoft Word to ID
    I would like to know the answer to that as well. The import filter has problems with tables, footnotes, endnotes, automatic references, and new page codes, for .docx, .rtf, and .doc files.

  • Selecting and importing text from Word

    Hi..
    I am interested in importing text from Microsoft Word into labview.
    The text will be identified by a particular 'style'. I have seen examples of reading text marked by 'bookmarks' however this doesn't appear to be sufficient or flexible enough for this application.
    I have tried adapting the 'bookmark' code (using different property/invoke nodes) but can't seem to find something that works in a similar way.
    Just wondering if anyone has already tried something similar.
    Any help is much appreciated.
    Regards,
    Mike
    (Labview 8.2.1 + Report Generation Toolkits)

    Hi Mark,
    The plan was to be able to sift through text in a Word document for blocks of text that match a particular 'style' (determined by us) and import the text into Labview to populate VI descriptions/free labels etc.
    I have adapted some code I have found to be able to cycle through table rows/columns and be able to match text/string patterns, however matching the 'style' property should make this operation a little cleaner or perhaps give us more control over what strings are matched.
    Mike

  • Problems with importing text messages from PC Suit...

    Problems with importing text messages from PC Suit 7.1.18.0 to my Nokia 5800
     I am trying to import a csv file that contains text messages (Note that this file was created using PC Suit 7.1.18.0) to a subfolder that I have created to My Folders but PC Suits only imports the text messages to the Draft folder. Note that initially it shows that the messages are import in the correct folder but after a refresh it shows them in the Draft Folder. Is their any setting that I should change in the PC Suit or the phone? My computer runs on Windows XP Service Pack 3 and the Nokia 5800 was upgraded to the latest firmware v20.0.012
     Thanks for your help

    Most phones only allows importing of draft and archived box for SMS.
    To do a restoring, you need to backup the SMS as a .nbu file using PC Suite and restore later.
    If you got an SD card, you can also do a backup on the SD Card (backup.arc) then restore later (reset and restore: backup.arc and mmc).
    What's the law of the jungle?

  • How do I get rid of the underline in text - tried   style decoration:none

    I am trying to get rid of the underline on some text which is not a link. I have tried putting style decoration: none in various places and I still can't get rid of it.
    Any ideas?
    Here's my HTML
    <!doctype html>
    <div id="businesscircleportfolio">
      <html>
      <head>
      <meta charset="UTF-8">
      <title>Untitled Document</title>
      <link href="style.css" rel="stylesheet" type="text/css">
      <style type="text/css">
    <script src="respond.min.js"></script>
    <script type="text/javascript">
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    /* I have no idea what this code below does but Dreamweaver randomly put it in*/
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    </script>
    /* This is code I put in that I found on the web that said it would work but doesn't*/
    <STYLE>
    <!--
    A{text-decoration:none}
    -->
    </STYLE>
    /* end of that code*/
      </style>
      </head>
      <body>
      <div class="portfoliolinkbackground"><font face= "arial" color= "white" font size="4" > Home </font><a id="portfoliolinkclear" href="index.html"></a>
      </div>
        <div id="adtitletest"><img src="images/adtitlewithwdandgraphics.png" width="700" height="220" alt=""/></div>
      <div id="businesslinkport"><font face= "arial" color= "white" font size="3" >Portfolio</font></div>
        <a id="businesslinkclear" href="portfolio.html" style="text-decoration:none"></div>
        <div id="classicallinkport"><font face= "arial" color= "white" font size="3" >Client</font></div>
       <a id="classicallinkclear" href="client.html" style="text-decoration:none"> </div>
         <div id="hiphoplinkport"><font face= "arial" color= "white" font size="3" >Contact</font></div>
         <a id="hiphoplinkclear" href="contactform.html" style="text-decoration:none"> </div>
         <div id="rocklinkport"><font face= "arial" color= "white" font size="3" >Pricing</font></div>
        <a id="rocklinkclear" href="price.html" style="text-decoration:none"> </div>
        <div id="facebook"><a href="https://www.facebook.com/paul.kirsch.399/about" title="facebook" target="new">
          <p><img src="images/facebookdkblue.png" width= "95" height="60" alt=""></p></div>
      <div id="linkedin"><a href="https://www.linkedin.com/profile/view?id=30306216&trk=nav_responsive_tab_profile" title="linkedin" target="new"><img src="images/linkedin.jpg" width="55" height="52" alt""></div>
      <div id="twitter">
        <img src="images/twitter.png" width="58" height="58" alt ""></div>
        </div>
        <div class="prices"> <font size="3" color=#b3f5f1 font face="helvetica" style= "text-decoration:none">
    Graphics and Web Service Prices<br>
    <ul>
    <li>Custom Web Site Graphics $350</li><p></p>
    <li>Custom Logo $125</li><p></p>
    <li>Custom website ($40/hr - price dependent on complexity and deadline)</li><p></p>
    <li>Five-Page Wordpress Brochure Web Site you can update yourself  $350</li><p></p>
    <li>Each additional page from the same template $40/page</li><p></p>
    <li>interactive forms - (surveys etc.) $250+ </li><p></p>
    <li>Site maintenance (we update your site) $360/yr </li><p></p>
    <li>Rebuild of existing site $40/hour </li>
    </ul></div>   </font></div>    
       </div>
        <p> </p>
        <p> </p>
        <p> </p>
      </body>
      </html>
    </div>
    /* I have 60 tons of CSS much of it junk. It is below*/
    charset "UTF-8";
    /* CSS Document */
    body {
      background-color: rgba(30,30,30,1);
      margin-left: 0px;
      left: -130px;
      margin-top: 50px;
      line-height: 5px;
      position: static;
      padding-top: 5px;
      height: auto;
    #div1 {
      margin-top: -40px;
      margin-left: 275px;
      margin-right: auto;
      position: relative;
    #div9 {
      margin-top: -15px;
      margin-left: 220px;
      margin-right: auto;
      position: relative;
      float: left;
    #adtitle:
    margin-left: 500px;
    #div2 {
      display: block;
      margin-top: 100px;
      margin-left: 450px;
      margin-right: auto;
      position: relative;
      border-radius: 100% / 50%;
    .meatsunsetshadow {
      margin-top: -120px;
      margin-left: 390px;
      width: 500px;
      height: 700px;
      display: block;
      background-image: url("images/me_atsunsetbackground4.JPG");
      background-size: 500px 700px;
      -webkit-box-shadow: inset 1px 2px 23px #FFF;
      box-shadow: inset -5px 30px 25px #000000;
      -webkit-border-radius: 75%;
      border-radius: 75%;
      margin-bottom: -750px;
      top: -60px;
    #clear-oval {
    img src: url(clear-oval.png);
    margin-top: -100px;
    margin-left: 100px;
    -webkit-border-radius: 75%;
      border-radius: 75%;
    #abouttext {
    margin-top:-165px;
    margin-left: 40px;
    #shadow a {
        display:block;
        width:900px;
        height:700px;
    .box-shad {
      margin-top: 100px;
      margin-left: -188px;
      width: 800px;
      height: 600px;
      display: block;
      background-image: url("big-tree-final1.jpg");
      background-size: 800px 600px;
      -webkit-box-shadow: 15px 15px 15px #000000 inset;
      box-shadow: 15px 15px 15px #000000 inset;
      -webkit-border-radius: 50%;
      border-radius: 50%;
      position: static;
    .box-shad a {
        display:block;
        width:900px;
        height:700px;
    #portfolio {
      width: 100px;
      height: 100px;
      margin-top: 610px;
      margin-right: 200px;
      margin-left: -75px;
      margin-bottom: 50px;
      border-radius: 75%;
      -webkit-border-radius: 75% 75%;
      background: rgb(92,87,58);
      position: relative;
      top: -900px;
      justify-content: center;
      align-content: center;
      text-align: 80px;
      text-indent: 77px;
      text-align-vertical: -5px;
    #portfolioprice {
      width: 100px;
      height: 100px;
      margin-top: 256px;
      margin-right: 200px;
      margin-left: -74px;
      margin-bottom: 50px;
      border-radius: 75%;
      -webkit-border-radius: 75% 75%;
      background: rgb(119,87,35);
      position: relative;
      top: -800px;
      justify-content: center;
      align-content: center;
      text-align: center;
    #portfolioclassical {
      width: 100px;
      height: 100px;
      margin-top: -185px;
      margin-right: 200px;
      margin-left: -30px;
      margin-bottom: 250px;
      border-radius: 75%;
      -webkit-border-radius: 75% 75%;
      background: rgb(119,87,35);
      position: relative;
      top: -800px;
      justify-content: center;
      align-content: center;
      text-align: center;
      text-indent: 60px;
    #portfolio2 {
      width: 100px;
      height: 100px;
      margin-top: -200px;
      margin-right: 200px;
      margin-left: -50px;
      margin-bottom: 50px;
      border-radius: 75%;
      -webkit-border-radius: 75% 75%;
      background: rgb(119,87,35);
      position: relative;
      top: -800px;
      justify-content: center;
      align-content: center;
      text-align: center;
    #businesspageportfolio {
      /*this covers the circular portfolio link for hiphop and business*/
      width: 100px;
      height: 100px;
      margin-top: 700px;
      margin-right: 200px;
      margin-left: 225px;
      margin-bottom: 50px;
      border-radius: 75%;
      -webkit-border-radius: 75% 75%;
      background: rgb(92,87,58);
      position: relative;
      top: -800px;
      display: flex;
      justify-content: center;
      align-content: center;
      text-align: center;
      align-items: center;
      text-indent: 77px;
    #textforbusiness{
      position top: -300px;
      margin-top: -840px;
      margin-left: 230px;
      margin-below: -50px;
      margin-bottom: -150px;
    .wrap {
    transition: -webkit-transition 1s ease-in;
    transition-delay: 1s, 2s;
    transition-duration: 1s .5s;
    .wrap:hover {
    -webkit-transform: translateZ(-200px);
    #portfoliobusiness {
      /*This is the circle for business on the portfolio page */
      width: 100px;
      height: 100px;
      margin-top: 262px;
      margin-right: 200px;
      margin-left: 176px;
      margin-bottom: 50px;
      border-radius: 75%;
      -webkit-border-radius: 75% 75%;
      background: rgb(202,177,136);
      position: relative;
      top: -35px;
      justify-content: center;
      align-content: center;
      text-align: center;
      text-indent: 77px;
    #spacertwo {
    #portfoliohome {
      /*this is the circle on the portfolio page for home */
      width: 100px;
      height: 100px;
      margin-top: 76px;
      margin-right: 150px;
      margin-left: -398px;
      margin-bottom: 50px;
      border-radius: 75%;
      -webkit-border-radius: 75% 75%;
      background: rgb(204,197,181);
      position: relative;
      top: -420px;
      justify-content: center;
      align-content: center;
      text-align: center;
      text-indent: 77px;
      line-height: 20px;
    #clearcircleportfolio {
      /* this is in the index page for portfolio link*/
    img src: url(images/clearcircle.png);
      width: 100px;
      height: 100px;
      margin-top: -102px;
      margin-left: -175px;
      left: -60px;
      z-index: 10;
      top: -60px;
    #clearcirlehomeportfoliopage {
      position: absolute;
      top: 8px;
      left: 10px;
      width: 700px;
      height: 900px;
      background-color: green;
    #clearcirclebusiness {
    img src: url(images/findme.png);
      width: 100px;
      height: 100px;
      margin-top: -192px;
      margin-left: -80px;
      margin-bottom: -90px;
      padding-bottom: -90px;
      -webkit-border-radius: 100%;
      border-radius: 50%;
      -webkit-border-radius: 50% 50%;
      left: 40px;
    #clearcircleclient {
    img src: url(images/findme.png);
      width: 100px;
      height: 100px;
      margin-top: -110px;
      margin-left: -00px;
      margin-bottom: -98px;
      padding-bottom: -90px;
      -webkit-border-radius: 100%;
      border-radius: 50%;
      -webkit-border-radius: 50% 50%;
      z-index: 9;
      top: 80px;
    #clientneeds {
      width: 100px;
      height: 100px;
      margin-top: -250px;
      margin-right: 200px;
      margin-left: 70px;
      margin-bottom: 0px;
      border-radius: 75%;
      -webkit-border-radius: 75% 75%;
      background: rgb(138,116,79);
      position: relative;
      top: -800px;
      text-align: 200px;
      text-indent: 77px;
    #contact {
      width: 100px;
      height: 100px;
      margin-top: -100px;
      margin-right: 200px;
      margin-left: 225px;
      margin-bottom: 0px;
      border-radius: 75%;
      -webkit-border-radius: 75% 75%;
      background: rgb(96,89,83);
      position: relative;
      top: -800px;
      text-indent: 113px;
      text-align: center;
      line-height: 55px;
    /*cleaercircle contact is the index page clear circle for contact-*/
    #clearcirclecontact {
    img src: url(images/clearcircle.png);
      width: 100px;
      height: 100px;
      margin-bottom: -90px;
      padding-bottom: -90px;
      -webkit-border-radius: 100%;
      border-radius: 50%;
      -webkit-border-radius: 50% 50%;
      z-index: 999;
      margin-left: -110px;
      margin-top: -121px;
    /*pricing is the price tan circle on index page*/
    #pricing {
      width:100px;
      height: 100px;
      margin-top: -100px;
      margin-right: 200px;
      margin-left: 380px;
      margin-bottom: 0px;
      border-radius: 75%;
      -webkit-border-radius: 75% 75%;
      background: rgb(180,168,144);
      position: relative;
      top: -800px;
      text-align: center;
      text-indent: 115px;
      line-height: 55px;
    /*repeating the above on portfolio page*/
    #business {
      width: 100px;
      height: 100px;
      margin-top: -128px;
      margin-right: 50px;
      margin-left: 250px;
      margin-bottom: 0px;
      border-radius: 75%;
      -webkit-border-radius: 75% 75%;
      background: white;
      position: relative;
      top: 200px;
      justify-content:center;
        align-content:center;
      text-align: center;
      text-indent: 90px;
    #classical {
      width: 100px;
      height: 100px;
      margin-top: -235px;
      margin-right: 200px;
      margin-left: 345px;
      margin-bottom: 0px;
      border-radius: 75%;
      -webkit-border-radius: 75% 75%;
      background: rgb(215,170,38);
      position: relative;
      top: 50px;
      text-align: center;
      text-indent: 77px;
    #hiphop {
      width: 100px;
      height: 100px;
      margin-top: -250px;
      margin-right: 200px;
      margin-left:500px;
      margin-bottom: 0px;
      border-radius: 75%;
      -webkit-border-radius: 75% 75%;
      background: rgb(213,164,97);
      position: relative;
      top: 200px;
      display: flex;
      text-align: center;
      text-indent: 115px;
      justify-content: center;
      align-items: center;
      line-height: 50px;
    #clearcirclehiphop {
    img src: url(images/clearcircle.png);
    width: 50px;
    height: 50px;
    margin-top: -270px;
    margin-left: -150px;
    margin-bottom: 90px;
    padding-bottom: 90px;
    -webkit-border-radius: 100%;
      border-radius: 50%;
      -webkit-border-radius: 50% 50%;
      z-index: 9;
    #clearcirclebusiness {
    img src: url(images/clearcircle.png);
    width: 50px;
    height: 50px;
    margin-top: -620px;
    margin-left: -450px;
    margin-bottom: 90px;
    -webkit-border-radius: 100%;
      border-radius: 50%;
      -webkit-border-radius: 50% 50%;
      z-index: 9;
    #rock {
      width: 100px;
      height: 100px;
      margin-top: -280px;
      margin-right: 50px;
      margin-left: 155px;
      margin-bottom: 0px;
      border-radius: 75%;
      -webkit-border-radius: 75% 75%;
      background: rgb(119, 87, 35);
      position: relative;
      top: 200px;
      text-align: center;
    .vcenter{
        width: 100px;
        height: 100px;
      vertical-align: middle;
    .vcenter:before {
      content: " ";
      display: inline-block;
      height: 100%;
      vertical-align: middle;
      float: left;
    .vcenter :first-child {
      display: inline-block;
      vertical-align: middle;
      left: -40px;
      text-align: center;
      top: -2px;
    #spacerhh {
    width: 200px;
    height: -80px;
    #spacerclassical {
    width: 200px;
    height: 50px;
    #spacerbusiness {
    width: 200px;
    height: 250px;
    #div22 {
      margin-top: 80px;
      margin-left: 200px;
    #div23{
    margin-top: -30px;
    #bustext {
      text-align: left
    Ul {
      list-style-type: square;
      margin-bottom: -29px;
    #clearcircleclassical {
    img src: url(images/findme.png);
    width: 50px;
    height: 50px;
    margin-top: -95px;
    margin-left: 0px;
    margin-bottom: -90px;
    -webkit-border-radius: 100%;
      border-radius: 50%;
      -webkit-border-radius: 50% 50%;
    #clearcirclebusiness {
    img src: url(images/clearcircle.png);
    width: 50px;
    height: 50px;
    margin-top: -120px;
    margin-left: 0px;
    margin-bottom: -90px;
    -webkit-border-radius: 100%;
      border-radius: 50%;
      -webkit-border-radius: 50% 50%;
    #clearcirclepricing {
      image src: url(images/findme.png);
      width: 600px;
      height: 600px;
      margin-top: -140px;
      margin-left: 50px;
    .mytext {
        width: 500px;
      height: 100px;
    .mytext1 {
        width: 500px;
      height: 50px;
    #facebook {
      margin-left: 170px;
      margin-top: -10px;
    #facebookpos {
      margin-left: -20px;
      margin-top: -670px;
      width: 900px;
      height: 900px;
    #linkedin {
      margin-left: 190px;
      margin-top: 20px;
      left: -150px;
    #linkedinposindex {
      margin-left: -20px;
      margin-top: 0px;
    #twitter {
      margin-left: 190px;
      margin-top: 20px;
    #twitterposindex {
    margin-left: -345px;
    margin-top: 5px;
    .prices {
      font-color: white;
      font-size: 14px;
      font-type: helvetica;
      margin-top: -180px;
      margin-left: 350px;
      z-index: 10;
      border: none;
      text-decoration: none;
    #iconsforpricing {
    margin-top: 950px;
    #businesslist {
    width: 600px;
    height: 800px;
    margin-top: 100px;
    #clearovalfortree {
      margin-left: -352px
    #facebookposprice {
      margin-top: -360px;
      margin-left: 30px;
    #linkedinposprice {
        margin-top: 0px;
      margin-left: 30px;
    #twitterposprice {
        margin-top: 0px;
      margin-left: -305px;
    #pricehome {
      width: 100px;
      height: 100px;
      margin-top: -0px;
      margin-right: 150px;
      margin-left: -275px;
      margin-bottom: 50px;
      border-radius: 75%;
      -webkit-border-radius: 75% 75%;
      background: rgb(204,197,181);
      position: relative;
      top: -420px;
      justify-content: center;
      align-content: center;
      text-align: center;
    #priceportfolio {
      width: 100px;
      height: 100px;
      margin-top: 1100px;
      margin-right: 200px;
      margin-left: 175px;
      margin-bottom: 50px;
      border-radius: 75%;
      -webkit-border-radius: 75% 75%;
      background: rgb(92,87,58);
      position: relative;
      top: -900px;
      justify-content: center;
      align-content: center;
      text-align: center;
    #priceclient {
      width: 100px;
      height: 100px;
      margin-top: -150px;
      margin-right: 200px;
      margin-left: 330px;
      margin-bottom: 50px;
      border-radius: 75%;
      -webkit-border-radius: 75% 75%;
      background: rgb(138,116,79);
      position: relative;
      top: -900px;
      justify-content: center;
      align-content: center;
      text-align: center;
    #pricecontact {
      width: 100px;
      height: 100px;
      margin-top: -150px;
      margin-right: 200px;
      margin-left: 490px;
      margin-bottom: 50px;
      border-radius: 75%;
      -webkit-border-radius: 75% 75%;
      background: rgb(96,89,83);
      position: relative;
      top: -900px;
      justify-content: center;
      align-content: center;
      text-align: center;
    #priceprice {
      width: 100px;
      height: 100px;
      margin-top: -150px;
      margin-right: 200px;
      margin-left: 655px;
      margin-bottom: 50px;
      border-radius: 75%;
      -webkit-border-radius: 75% 75%;
      background: rgb(180,168,144);
      position: relative;
      top: -900px;
      justify-content: center;
      align-content: center;
      text-align: center;
    #test {
      width: 800px;
      height: 600px
      position: relative;
      margin-left: 262px;
      margin-top: 10px;
    #test img {
      width: 800px;
      height: 600px;
      position: absolute;
      left: -487px;
      top: 113px;
      -webkit-transition: opacity 1s ease-in-out;
      -moz-transition: opacity 1s ease-in-out;
      -o-transition: opacity 1s ease-in-out;
      transition: opacity 1s ease-in-out;
      margin-left: -80px;
    #test img.top:hover {
      opacity: 0;
    #footercontact {
    width 500px;
      top: 700px;
      margin-top: 1000px;
      width: 400px;
    #wilsontext {
      width: 300px;
      height: 100px;
      left: -10px;
      line-height:.45em;
    #clienthome {
      width: 100px;
      height: 100px;
      margin-top: 110px;
      margin-right: 150px;
      margin-left: -375px;
      margin-bottom: 50px;
      border-radius: 75%;
      -webkit-border-radius: 75% 75%;
      background: rgb(204,197,181);
      position: relative;
      top: -420px;
      justify-content: center;
      align-content: center;
      text-align: center;
    #clearcircle {
    img src: url(images/findme.png);
      width: 50px;
      height: 50px;
      margin-top: -122px;
      margin-left: -250px;
      margin-bottom: -90px;
      padding-bottom: -90px;
      -webkit-border-radius: 100%;
      border-radius: 50%;
      -webkit-border-radius: 50% 50%;
      left: -50px;
    #angelface {
      margin-top: -160px;
      margin-left: 0px;
    #clientlinkportfolio {
    width: 100px;
      height: 100px;
      margin-top: 860px;
      margin-right: 200px;
      margin-left: 270px;
      margin-bottom: 50px;
      border-radius: 75%;
      -webkit-border-radius: 75% 75%;
      background: rgb(92,87,58);
      position: relative;
      top: -900px;
      justify-content: center;
      align-content: center;
      text-align: center;
      text-indent: 77px;
    #clientlinkclient{
    width:100px;
      height: 100px;
      margin-top: -250px;
      margin-right: 200px;
      margin-left: 400px;
      margin-bottom: 0px;
      border-radius: 75%;
      -webkit-border-radius: 75% 75%;
      background: rgb(138,116,79);
      position: relative;
      top: -800px;
      text-align: center;
      text-indent: 77px;
    #clientlinkcontact {
      width:100px;
      height: 100px;
      margin-top: -246px;
      margin-right: 200px;
      margin-left: 520px;
      margin-bottom: 0px;
      border-radius: 75%;
      -webkit-border-radius: 75% 75%;
      background: rgb(96,89,83);
      position: relative;
      top: -800px;
      text-align: center;
      text-indent: 112px;
      line-height: 45px;
    #clientlinkprice {
    width: 100px;
      height: 100px;
      margin-top: -246px;
      margin-right: 200px;
      margin-left: 640px;
      margin-bottom: 50px;
      border-radius: 75%;
      -webkit-border-radius: 75% 75%;
      background: rgb(119,87,35);
      position: relative;
      top: -800px;
      justify-content: center;
      align-content: center;
      text-align: center;
      text-indent: 115px;
      line-height: 45px;
    #checklist {
      margin-left: -120px;
      left: -320px;
    .portfoliolinkbackground {
      background-color: rgba(92,87,58,1);
      background-position: 50px 25px;
      height: 100px;
      width: 100px;
      border-radius: 75%;
      -webkit-border-radius: 75% 75%;
      margin-left: 150px;
      position: relative;
      max-width: 100px;
      max-height: 100px;
      line-height: 20px;
      justify-content: center;
      align-content: center;
      text-align: center;
      text-indent: -1px;
      line-height: 99px;
    #portfoliolinkclear {
      position: absolute;
      top: 8px;
      left: 10px;
      width: 100px;
      height: 100px;
      background-color: transparent;
    #adtitletest {
      height: 200px;
      width: 800px;
      margin-top: -120px;
      margin-left: 275px;
      position: relative;
    #wilsontextgeneric {
      margin-top: 40px;
      margin-right: 40px;
      margin-left: 150px;
      margin-bottom: 0px;
      height: 80px;
      width: 325px;
      line-height: 10px;
    #cdcovergeneric {
      margin-top: 35px;
      margin-left: 150px;
      height: 500px;
      width: 500px;
    #facebookicon {
      margin-left: 220px;
      vertical-align: top;
      top: -20px;
    #linkedicon {
      left: 250px;
      margin-left: 236px;
      margin-bottom: 22px;
      width: 60px;
    #twittericon {
      margin-top: 5px;
      margin-left: 232px;
      width: 60px;
      height: 0px;
      top: -5px;
    #businesslinkport {
      height: 100px;
      width: 100px;
      margin-top: 10px;
      margin-left: 0px;
      position: relative;
      left: 350px;
      border-radius: 75%;
      -webkit-border-radius: 75% 75%;
      background: rgb(202,177,136);
      justify-content: center;
      align-content: center;
      text-align: center;
      text-indent: 5px;
      line-height: 100px;
    #classicallinkport {
      height: 100px;
      width: 100px;
      margin-top: 150px;
      margin-left: 50px;
      position: relative;
      left: 100px;
      border-radius: 75%;
      -webkit-border-radius: 75% 75%;
      background: rgb(215,170,38);
      justify-content: center;
      align-content: center;
      text-align: center;
      text-indent: 5px;
      line-height: 100px;
      top: -150px;
    #hiphoplinkport {
      height: 100px;
      width: 100px;
      margin-top: 0px;
      margin-left: -300px;
      position: relative;
      left: 450px;
      border-radius: 75%;
      -webkit-border-radius: 75% 75%;
      background: rgb(213,164,97);
      justify-content: center;
      align-content: center;
      text-align: center;
      text-indent: 5px;
      line-height: 100px;
    #rocklinkport {
      height: 100px;
      width: 100px;
      margin-top: 200px;
      margin-left: 100px;
      position: relative;
      left: 50px;
      border-radius: 75%;
      -webkit-border-radius: 75% 75%;
      background: rgb(119, 87, 35);
      justify-content: center;
      align-content: center;
      text-align: center;
      text-indent: 5px;
      line-height: 100px;
      top: -200px;
    #businesslinkclear {
      position: absolute;
      top: 245px;
      left: 350px;
      width: 100px;
      height: 100px;
      background-color: transparent;
    #classicallinkclear {
      position: absolute;
      top: 245px;
      left: 510px;
      width: 100px;
      height: 100px;
      background-color: transparent;
    #hiphoplinkclear {
      position: absolute;
      top: 245px;
      left: 660px;
      width: 100px;
      height: 100px;
      background-color: transparent;
    #rocklinkclear {
      position: absolute;
      top: 245px;
      left: 810px;
      width: 100px;
      height: 100px;
      background-color: transparent;
    #test1 {
      width: 800px;
      height: 600px;
      position: relative;
      margin-left: -25px;
      margin-top: -550px;
    #test1 img {
      width: 800px;
      height: 600px;
      position: absolute;
      left: 347px;
      top: 390px;
      -webkit-transition: opacity 1s ease-in-out;
      -moz-transition: opacity 1s ease-in-out;
      -o-transition: opacity 1s ease-in-out;
      transition: opacity 1s ease-in-out;
      margin-left: -80px;
    .top1 {
      width: 800px;
      height: 600px
      position: relative;
      margin-left: 252px;
      margin-top: -0px;
    .top1: hover {
      width: 800px;
      height: 600px
      position: relative;
      margin-left: 252px;
      margin-top: -10px;
      background-image: treeinovalonlyforpossiblefade4.png;
    #clientchecklistnew {
      margin-left: 300px;
      left: 150px;
      margin-right: 60px;
      padding-left: 70px;
      margin-top: -150px;
      text-decoration: none;
    #clientchecklistnew a {
      text-decoration: none;
    #crossfade {
        position:relative;
        height:800px;
        width:600px;
    #crossfade img {
        position:absolute;
        left:230px;
      top: -150px;
        opacity: 1;
        -webkit-transition: opacity 1s ease-in-out;
        -moz-transition: opacity 1s ease-in-out;
        -o-transition: opacity 1s ease-in-out;
        -ms-transition: opacity 1s ease-in-out;   
        transition: opacity 1s ease-in-out;
    #crossfade img.top:hover {
        opacity:0;

    Nancy,
    You are God!
    It worked!
    Thanks.
    I have a dumb basic question which is sort of related to your shambles comment, which I don't deny is true.
    I am confused about whether style.css files get affiliated with each separate HTML page or whether there is just one style.css file that is affiliated with all my HTML pages. If they are separate CSS files, how do I separate each style.css file?
    Best, P.

  • Importing text file into search and redact window.

    I am in the search window under the search and redact tool.  I
    am trying to import a file that was originally an excel to populate the
    search multiple words window.  I read that text files can be imported.  I saved the file as a text file but it does not import.  I can import an adobe file but this gives me a list with a bunch of junk.  What am I missing?

    The dialog imports text files.
    Make sure that the file you are importing is a text file and has one word in every line.

  • How can I import text produced in Pages into Adobe inDesign?

    How can I import text produced in Pages into Adobe inDesign?

    Menu > File > Export > Word .doc/x
    I doubt it will do graphics and layout, but maybe, depending on your version of Indesign you may hit lucky (but probably not).
    Peter

  • HT4946 i have an important text message on a phone that currently wont turn on, i know its backed u all i need is a copy of the text message, how do i do this?

    i have an important text message on my phone that i need to retrieve but my phone is currently broken so i would like to know how i retrieve it as my iphone is backed up. cheers

    http://support.apple.com/kb/ts2755

  • I copy text, paragraph styles, character styles & images from 1 document to another only text copies

    I have a few documents that have text and images that is frequently repeated through many chapters of an In Design book. (Printing, exporting etc.) I used to select all in the source document, Command + C to copy it, change to the target document, Command + V to paste it. It worked well for six months.
    About two weeks ago it stopped working (shortly after an update to In Design). I have text, paragraph styles, chacter styles and images in each document. Only the plain text copies over. This is the same for any document.
    I haven't changed Preferences in six months.
    I'm on a Mac 10.8.2, In Design CS6 version 8.0.1.
    It's driving me crazy! It's a lot of work to reformat each 2  to 10 pages after copying it in.
    Steven Hussey

    Source:
    Target:
    Here you go.
    Steve

Maybe you are looking for

  • Trying to increase the sound of recorded screen captures

    Hi. I'm making screen capture movies with Snapz PRo 2 and they are being saved as QT movies on my desktop. When I open them in QT and try to increase the sound volume, the setting don't stick if I try to raise the volume over 0db. I read somewhere th

  • Idocs processing time between 2 idocs with same material

    Hi Gurus we are getting 2 idocs from other system with same material, first idoc is process successfully, second one is not processing and error throughing - material is currently processing by user WF BATCH. can we set time gap between 2 idocs for p

  • Adobe Captivate help me plz

    i m new to adobe captivate4 using first time... i need to insert a swf movie into adobe captivate 4 and have to generate scorm file for my elearning project... i am able to insert swf files... i inserted 10 swf file in 10 different file the problem h

  • Red Information in Netbeans 6

    Hi, receive flg. information if i run a project Qoute... Trying to override old definition of task nbjavafxconnect Trying to override old definition of task nbjavafxstart Trying to override old definition of task nbjavafxreload Trying to override old

  • Elements 10 closes when making panorama and Adobe Tech Support???

    I recently installed PSE10.  I upgraded because my old computer crashed, so I went to Win7 with 64 bit and did an upgrade of several programs.  I noted that when I try to do a panorama in 10 I get an error message "Adobe Photoshop Elements 10 has Sto