Question on Converting an existing style sheet to print.

When attempting to do the conversion, I cannot get the 'link' button in MAC.  It's greyed out.  In the PC I can get the 'link' button, then do all of the proper media selections but when I go to save it I get a message about my new_styles.css being an HTML file, so it won't save it.
Is there some process or settings I might be missing?  I can supply all the steps taken if necessary?
Thank you,

Here is what was generated for me:
The styles all worked in the site prior to being saved as an external styles sheet.  Now we are trying to link that same styles sheet back to the original site.  I apologize for the size, but that's what was generated.
@charset "UTF-8";
body {
    background-color: #FFF;
    margin: 0;
    padding: 0;
    color: #000;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 100%;
    line-height: 1.4;
.sidebar1 aside {
    font-size: 90%;
/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
    padding: 0;
    margin: 0;
h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;     /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */
    padding-right: 15px;
    padding-left: 15px; /* adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
    border: none;
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
    color: #42413C;
    text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
a:visited {
    color: #6E6C64;
    text-decoration: underline;
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
    text-decoration: none;
/* ~~ This fixed width container surrounds all other blocks ~~ */
.container {
    width: 950px;
    background-color: #FFFFFF; /* the auto value on the sides, coupled with the width, centers the layout */
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    border: 2px solid #060;
    background-image: url(images/divider.png);
    background-repeat: repeat-y;
#logo {
    position: absolute;
    width: 170px;
    height: 158px;
    z-index: 1;
    margin-top: 10px;
    margin-left: 30px;
    left: 216px;
    top: 1px;
/* ~~ The header is not given a width. It will extend the full width of your layout. ~~ */
header {
    background-color: #090;
    background-image: url(lesson04/images/banner.jpg);
    background-repeat: no-repeat;
    height: 130px;
/* ~~ These are the columns for the layout. ~~
1) Padding is only placed on the top and/or bottom of the block elements. The elements within these blocks have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the block itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the block element and place a second block element within it with no width and the padding necessary for your design.
2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a block set to float right). Many times, padding can be used instead. For blocks where this rule must be broken, you should add a "display:inline" declaration to the block element's rule to tame a bug where some versions of Internet Explorer double the margin.
3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar blocks could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.
4) If you prefer your nav on the left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the blocks around in the HTML source.
.sidebar1 {
    float: left;
    width: 180px;
    padding-bottom: 10px;
.content {
    width: 770px;
    float: right;
    padding-top: 10px;
    padding-right: 0;
    padding-bottom: 10px;
    padding-left: 0;
.content h1 {
    font-size: 200%;
    margin-top: 10px;
    margin-bottom: 5px;
.Green {
    color: #090;
nav p {
    font-size: 90%;
    font-weight: bold;
    color: #FFC;
    background-color: #090;
    text-align: right;
    padding-top: 5px;
    padding-right: 20px;
    padding-bottom: 5px;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: #060;
    background-image: url(images/background.png);
    background-repeat: repeat-x;
nav p a:link, nav p a:visited {
    text-decoration: none;
    color: #FFC;
    padding: 5px;
nav p a:hover, nav p a:active {
    color: #FFF;
    background-color: #060;
nav p a {
/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
    padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
    list-style: none; /* this removes the list marker */
    border-top: 1px solid #666; /* this creates the space between the navigation on the content below */
    font-size: 90%;
ul.nav li {
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: #0C0;
    border-right-color: #060;
    border-bottom-color: #060;
    border-left-color: #0C0;
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
    padding: 5px 5px 5px 15px;
    display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
    width: 160px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
    text-decoration: none;
    background-color: #090;
    color: #FFC;
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
    background-color: #060;
    color: #FFF;
/* ~~ The footer ~~ */
footer {
    padding: 10px 0;
    background-color: #090;
    position: relative;/* this gives IE6 hasLayout to properly clear */
    clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
    font-size: 90%;
    color: #FFC;
    background-image: url(images/background.png);
    background-repeat: repeat-x;
/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, article, figure {
    display: block;

Similar Messages

  • Bloated CSS Style Sheet...

    My style sheet is about 60k... much too big.
    Trying to find a way to put it on a diet.
    Is there a way to convert it to ' css shorthand'?
    I set the preferences to use shorthand for css declarations but don't see any change in existing style sheets.
    Help appreciated.
    Dan H.

    Hi, Dan,
    Without your code in front of me, I'll be shooting arrows in the dark, but here goes. (at 60k, I'm pretty sure we don't want you to copy it in here!)
    1. Check for styles that are very nearly the same as each other. You can 'gang up' many styles into one declaration, and only separate out the bits that differ:
    Instead of
    h1 {
         font-family: Verdana, Arial, sans-serif;
         color: blue;
         font-size: 1.4em;
    h2 {
         font-family: Verdana, Arial, sans-serif;
         color: blue;
         font-size: 1.2em;
    h3 {
         font-family: Verdana, Arial, sans-serif;
         color: blue;
         font-size: 1.1em;
    (note the similarities?) use
    h1, h2, h3 {
         font-family: Verdana, Arial, sans-serif;
         color: blue;
         font-size: 1.4em;
    h2 { font-size: 1.2em;}
    h3 { font-size: 1.1em;}
    Put the fuller-bodied style first and the difference styles after, so they will rule for their particular attribute stylings.
    2. ONLY style those attributes that you need to style. You need not define EVERY possible attribute of a tag, etc. The lists of attributes that you see in the CSS Styles Panel (Show Category View, for instance) are only there for your convenience. They are not all there because you need to actually style them all, all the time. If you are restyling a Heading 1 and are only changing the default color to blue, only style that attribute.
    3. If you are using Spry Widgets, leave those styles in their own CSS file, don't bring them into your site CSS file. You can link multiple CSS files to your pages.
    If you see any of these possibilities for your style sheet diet, give them a try. If you can upload the file and give us a link, I'm sure we can come up with some additional suggestions!
    Z

  • Formatting incoming text with style sheets

    Is there a way to "find/change" formatted text with existing style sheets?<br /><br />In other words I have formatted text placed into my indesign document that looks like the following: <bf>Four Patch</bf> Then another set of text that looks like this:<it> Baltimore Press</it> <br /><br />I set up stles sheets formatted for Bold font and Ital font to accomodate these formats. Problem is I have a 500 page book that I need to go through and stylize. I tried to do a find/change global (<bf> </bf> to bold font etc but it didn't work. I was hoping by just putting a space between the <> would  help the find/change option to find all the text but kept saying could find.<br /><br />I hope someone understands what I'm trying to do and can tell me that there is a remedy to the tedious formatting issue I have.<br /><br />Thanks<br /><br />MAria<br />Stuart, Florida

    If you have InDesign CS3, I can think of two ways to deal with this.
    Grep search: set search to
    <bf>([^<]+)</bf>
    and replacement string to
    $1
    and then set the change format to your boldface style. Change all. (I often think it's a good idea to take a copy before doing Change All on a 500-page document, but that's up to you.) Repeat with hopefully obvious changes for the italics. You can save the searches if you need to do this often.
    Adventurous alternative.
    Put the single line
    <stuff>
    at the top of your file, and
    </stuff>
    at the bottom.
    Now it's XML. So open the structure panel, import XML from the fly-out menu. Map Tags to Styles from the same menu, and set up the correspondence you need. Then drag the stuff node from the structure panel to the document.
    If you have to do this more than once, you can import the mapping from an old file each time after the first.
    IMPORTANT: The XML route will fail if you have loose & or less than characters in your file. You would have to replace these with the appropriate character entity references.
    (If you aren't reading this on the forum site, you may be seeing character entity references in the message. Hopefully you can decode them.)

  • Need help with media-print style sheets

    I am trying to create a style sheet for printing only for pages on my site. I have found a lot of the same information describing how to remove unwanted items, and change colors and so forth for the items to be printed. My problem is that after the unwanted parts of the page are removed, the remaining test to be printed does not "flow" into the areas previously occupied by other elements. The printed text remains in the location on the page that it occupies on the webpage. How do I get the text to "take over" the whole page?
    Below is the style definition for the text content as it is displayed on the screen:
    div.mainBody {
         position:absolute;
         left:210px;
         top:145px;
         width:640px;
         height:595px;
         background-color:#000000;
         font : normal normal normal/normal Book Antiqua MS Sans Serif Times New Roman;
         text-align: justify;
         color:#CCCCCC;
    And here is the "new" definition for the text as it should be printed:
    .mainBody {
         position: absolute !important;
         left: 0px;
         top: 0px;
         width: 100%;
         margin: 0;
         padding: 0;
         background: white;
         font: normal normal normal/normal Book Antiqua MS Sans Serif Times New Roman;
         text-align: justify;
         color: #000;
         float: none;
         display: inline;
    All other elements on the page are "turned off" with "{ display: none; }"
    Why am I having so much trouble with such a simple thing?
    Thanks for any help!
    Mark

    Hello Mark,
    why do you think a feedback forum for Oracle forums is the right place to ask this question?
    Regards
    Marcus

  • Safari print style sheet problem

    I've been working on a new site design and for the first time I'm trying to
    use a different style sheet for printing a page (via the link media="print"
    tag).  So far I've had success with this technique except when printing with
    Safari  The printed page comes out as desired - the problem is that
    after the print dialogue box disappears, the appearance of the original
    "screen" web page gets messed up.  Images get moved and a lot of the content
    gets crunched into a column about 1/3 the size of the page.
    It seems to be a Safari-only problem; I've tried printing in Mozilla, IE,
    Mozilla, Opera and none of these browsers exhibit
    this behavior.  I've also tried using Safari on other Macs and get the same
    result.  Does anyone have ideas on how to fix this?

    I found a Solution my CSS for print it  was in bad layout i found out that i can't use the diplay:block; twice
    Luis

  • Creating Style Sheets for Existing Text

    Can I get some advice on what would be the easiest way to create and apply style sheets to a document that was layed out w/o any? My Art Director layed out a dozen pages of actual type w/o any style sheets. It's a pretty basic layout with Headers, Sub-heads and body copy. There are no "space afters" applied to any of the hard paragraph breaks after sub heads, and nothing has style sheets applied to it. All text has Basic Paragraph applied. I know how to create style sheets based on what he created, but then how would I apply to the rest of the pages w/o having to physically format it all? Thanks for any help with this.

    SIcsempertyrannis schrieb:
    Your flippant response to my question was to send my Art Director for basic computer training. How exactly is that polite or helpful? And if you know the difference between a hard and soft return then why did you ask if I meant shift+return when I clearly stated there were no space-afters applied to any hard paragraph breaks?
    Your initial response was laden with typos and sarcasm, as is your second. If you dont want to be bashed then practice what you preach. Again, and for the last time, if you dont have an answer to a question you should refrain from posting.
    No "space after" does not mean that it is shift-return! The space is depending on the settings of the Paragraph (Style) in Intends and Spacing. And sorry, a lot of people here mean with the same words different things.
    And yes, send your Art Director to a training, because when smeone uses shift-return instead of properly paragraphs he has not enough knowledge to do word processing.
    Thanks for the typos you have found. But you can keep them and all others you will find here. And no, I had no sarcasm.
    I decide myself if I refrain from posting, it is not your job.

  • XSL-FO Style Sheet Questions..

    Hi,
    I have some questions regarding XSL-FO Style Sheet
    1. How can add some more fields to the XSL-FO Style Sheet when they are not included in the original XML source.. ( like we have attribute1 through attribute3)
    for storing telephone number, fax number and email of the buyer) as we do not have access to the source code that generates the XML.
    2. I need to include the signature image at the bottom of the PO and that depends on the operating unit to which the PO belongs.
    I will appreciate if you can show some light on this with some examples..
    Thanks for your help..
    Shree

    Hi,
    For the question 2, I thinck you can read the XMLP blog entry :
    http://blogs.oracle.com/xmlpublisher/2006/04/13
    Hope you will help.
    Cyryl

  • Attach existing CSS style sheet to existing site

    Hello all,
    I have an external CSS style sheet called default.css. I have an existing site of 61 pages that I want to apply default.css. Is there a way to apply a CSS file to multiple pages? Or am I doomed to going through the process 61 times?
    Thanks for your time.

    Thanks for replying Ben.
    I 'forced' it to work. Fortunately, the pages were all linked to the same style sheet, so I just did a 'Find and Replace All'.
    Thanks again.

  • Media Print Style Sheet Question

    Hello!
    I just added a Media Print style sheet to a website.
    Everything seems to
    work for the most part fine and the layout is as expected and
    functioning as
    desired. When I print from Firefox the print size is 12 pt as
    my style sheet
    specified, however when I print exactly the same page from
    Internet Explorer
    the print size is tiny - like maybe eight or something. I
    thought that the
    media print style sheet communicates directly with the
    printer while the
    screen style sheet communicated with the viewer screen. Am I
    mistaken? Why
    does the print size change depending upon what browser you
    use?
    Does anyone have a suggestions on how to get the Internet
    Explorer to
    recognize the font size command and print in 12 pt instead of
    8?
    Thank you
    Best Regards,
    Webdesigner

    .oO(Webdesigner)
    >I just added a Media Print style sheet to a website.
    Everything seems to
    >work for the most part fine and the layout is as expected
    and functioning as
    >desired. When I print from Firefox the print size is 12
    pt as my style sheet
    >specified, however when I print exactly the same page
    from Internet Explorer
    >the print size is tiny - like maybe eight or something. I
    thought that the
    >media print style sheet communicates directly with the
    printer while the
    >screen style sheet communicated with the viewer screen.
    Am I mistaken? Why
    >does the print size change depending upon what browser
    you use?
    The stylesheet itself doesn't communicate with anything. It's
    always the
    browser that renders the document or sends it to the printer.
    Different
    browsers behave differently, so there will always be
    differences in the
    ouput. Some smaller, some bigger.
    >Does anyone have a suggestions on how to get the Internet
    Explorer to
    >recognize the font size command and print in 12 pt
    instead of 8?
    Got a URL so we can have a look at it?
    Micha

  • Style sheet changes not appearing in RH10

    Hello all,
    Searching for an answer before I posted, I saw this question from a member named Pam about RH11 posted almost a year ago, but I don't see an answer. I'm hoping there is an answer!
    After many years of working in RoboHelp and carrying on with inline styles, I'm now looking into changing over to style sheets. I've been tinkering with them in some test projects, and I'm having the same problem that Pam did. The process of creating and applying a style sheet is simple, as far as I can tell, yet I can't get the style sheet formatting to appear. It's in the HTML--I see the .css specified, and there are only heading tags and so on present instead of inline stuff--yet the fonts I've selected appear neither in the Styles and Formatting pod nor in the Design view of the topic. I searched Adobe for help and found this: ROBOHELP 10: Creating CSS for a Topic | Tech Comm Suite Highlights | Adobe TV. I did exactly the same steps, but my fonts and spacing do not change as they do in the video. They don't appear different, that is. When I go into the style sheet, my selections are in there; they're just not displayed on the screen. I compiled a chm file to see if by chance the changes might appear there, but no.
    I tried this both with existing and new topics in a test copy of an existing project and with a brand new project created in RoboHelp that had none of my usual baggage. Any ideas?
    Thanks,
    Beth

    When I opened your CSS it was written as below.
    /*Created with Adobe RoboHelp 10.*/
    @media only screen and (min-width: 1024px) and (max-width: 99999px){
      h1 {
      font-family: Arial;
      font-size: 18pt;
      x-next-class: ;
      x-next-type: p;
    @media only screen and (min-width: 1024px) and (max-width: 99999px){
      p {
      font-family: Arial;
    That was because, as Amebr had picked up, you must have had Desktop setting in the media dropdown when you applied the style. The result is that if you are viewing in any less than 1024px, Arial will not be applied and you will get the browser default on the user's machine.
    With media set to None, I defined h1 and p again using Rh's CSS editor and the following was appended.
    h1 {
      font-weight: bold;
      font-size: 22pt;
      margin-top: 14pt;
      margin-bottom: 14pt;
      margin-left: 0pt;
      margin-right: 0pt;
      page-break-after: avoid;
      font-family: Arial;
      x-next-class: ;
      x-next-type: p;
    p {
      margin-top: 14pt;
      margin-bottom: 14pt;
      margin-left: 0pt;
      margin-right: 0pt;
      font-family: Arial;
    Go back to your real project and define your styles with media set to None. Take a copy of the exising CSS first for safety. Delete any styles with media rules applied.
    Create the styles by right clicking and using CSS Editor. Clean up by right clicking and using HTML Editor (the css will open in Rh and you can work on it as if in a text editor.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Numbered List and Bulleted List w/ Custom Style Sheet

    Hi,
    I am a new user to RoboHelp 7, and must say I find it useful
    but also painful to use. Currently I’m trying to solve
    something that feels like a bug in RoboHelp 7, but before I give in
    and accept defeat I wanted to check with the forum.
    I have FrameMaker 8, and import the files to RH where I use
    them to create WebHelp projects.
    Here’s a short procedure:
    1. I Import my files with a predefined style sheet matching
    the FM styles.
    2. I also check the Convert to HTML list option and set all
    numbering and bullet styles to User defined.
    - After import RH does the usual thing and creates a bunch
    of style sheets on its own
    3. I select all the files from the Topic List pod and apply a
    new custom style sheet. This enables me to have one style sheet for
    all the HTML files with the right layout and formatting
    4. I generate the output, and RH uses the new style sheet
    reference
    The resulting HTML files shows that the output is not the
    same as the generated HTML shown in RH’s HTML editor view
    - Editor view: <li class=”style”>
    - Browser view: <li>
    6. If I make a change (e.g. add a space) and save the HTML
    file, and generate the project again the HTML is correct in the
    browser
    One could argue that it’s not a big problem; however,
    with a large project this is starting to look more like a nightmare
    Does anyone know of this problem, and if so can it be fixed?
    Kind regards,
    Jon

    Is this the time when I get really angry at Adobe for creating the worst FrameMaker/RoboHelp integration ever? No! However, I must admit that I'm amazed that they are unable to solve an important feature as conversion of lists from a FrameMaker document to a RoboHelp WebHelp project. When I say conversion I mean a clean conversion with minimal interference from RoboHelp that allows me to use CSS to its full extent.
    Here's the problem, and this was also the problem with RoboHelp 7 and FrameMaker 8. BTW, I use standalone versions (not TCS 1 or 2).
    Figures: First image depicts FrameMaker 9's Paragraph Designer and the Autonumber format for a paragraph named VizNumbered. Second image depicts the RoboHelp 8's conversion setting.
    FrameMaker uses Autonumbering in front of paragraphs to create lists. This means that you in RoboHelp need to manage two formats, the autonumber and the paragraph style.
    RoboHelp does of course not (by default) use Autonumbering in front of paragraphs because a RoboHelp WebHelp project is HTML based, and list tags in HTML can perfectly handle any formatting of text etc.
    RoboHelp will convert, when "Convert Autonumber to HTML List" is selected, the Autonumber in FrameMaker to a list tag (LI). By default this will generate a list with a lot of margin, font and other CSS properties that tries to simulate the way the list is laid out in the FrameMaker document. In addition to the list tags it will convert the FrameMaker paragraph to a P tag which it inserts within a list tag. The issue you will experience with this is that indentations with the paragraph tag does not align properly between line 1 and 2. At the same time the WebHelp project will not look the same in IE, Firefox or Chrome. That is, Chrome and Firefox will look the same, and IE different. IE has the WYSIWYG feel, but it does not comply well with W3C standards (i.e. using P tags enclosed by LI tags is not a good idea ...).
    Selecting "Convert Autonumber to RoboHelp List" does something similar, but is not recommended at all!
    So, here's the big question. How can I make sure RoboHelp understands that I ONLY need to define a list tag with a CSS class attribute attached to it?
    Today I basically only get the following:
    <li><p class=""></p></li> or,
    <p class=""></p>
    What I want is the following:
    <li class=""></li>
    Can this be solved with today's versions, can anyone help me, or do I have to wait for the Adobe development team to realize this and to fix it?

  • Attaching style sheets to whole website?

    My question about attaching CSS style sheets remains unanswered as far as globally having them appear in the panel for the whole site. David Powers did answer me about how to add them to new sheets, but I have a site I imported from GoLive and what it looks like if I'm correct is that I have to attach it to each page individually to have it appear in the panel each time. Of course once I've done that to each page they will 'stick', but what I would like is if I create a style sheet and save it to the root, that it appear for any page that exists in the root level. Am I wrong? Or is there a way to make it appear for all pages without individually attaching?
    Thanks
    bob

    bobfharris wrote:
    what I would like is if I create a style sheet and save it to the root, that it appear for any page that exists in the root level. Am I wrong? Or is there a way to make it appear for all pages without individually attaching?
    Style sheets must be attached to each page. One simple way of adding the style sheet to existing pages is to to a Find and Replace operation.
    Find:
    </head>
    Replace with:
    <link href="styles/mystylesheet.css" rel="stylesheet" type="text/css" />
    </head>
    This uses a document-relative path to the stylesheet, so you would need to use a site-root relative link or do it separately for each level of the site hierarchy.

  • Scripts working with Style Sheets

    Hello. I'm working in CS3, InDesign.
    I am working on a fairly large conference book full of sessions, two columns per page. Two style sheet in question: 1) Head_with_RuleAbove; 2) Head_with_NoRule. Scenario: The sessions are divided by a horizontal rule, except when the session is at the top of a column. Here in lies my problem, if a session is added or taken away then I have to go back through to the end of the file and touch all the "head" to either add or remove the rule above with style sheets. If this happens at the front of the book, it's very time consuming.
    My dream: Is there a script that exists that can run in tandum with style sheets that picks a style sheet to use depending on where the text find's itself in the column, ie at the top or not at the top?
    I apologize that this question is so wordy and confusing.I appreciate any help you all have to offer. Until then I will click away.
    Kindly.
    --Dimitry

    It's possible to write a script that does just that: add a line to each head, except when it's at the top of a frame; in that case remove the line.
    A drawback is that you would have to run it on every change. So try cheating. This way you don't have to do anything on reflowing text:
    Go to the master pages for these columns and add a new layer. Position this layer on top of the existing one(s). Draw a white rectangle on the position where the line would come. All you have to do is making sure you add the text on the right layer, and don't use these master pages for anything else than these 2-column texts.

  • Is it possible to change the color of a layer of a Customs CSS from an External Style sheet?

    Hi,
    I have sucessfully link External .css  file to my HTML page and able to change the font size of the headlines and the paragraph.
    What I am not able to do is to ADD the color my Custom CSS from the External sheet.  I have difined the color attribute as a 'Advance'
    and gave it the same name "#bigwraper" that is has in my HTML file.
    Attached is the color outline of my 'Blank Layout' with colors?
    Thank you.
    Dreamer101.1

    Hi Murray,
    I am building a web site on which the entire content would be changed at least daily. The website would have similar design to www.Helium.com
    The page will have CCS layout boxes in which different content would  be pasted.
    To re-phrase my question:  I want to know how to change the color of a layer from an external style sheet?
    Because my home page 'Sidebar' and colors would be the same for all page, only the content of different pages would be different.  If I want to change a color of my web side pages, I need to learn how to do it in one spot through an External Style Sheet.
    I am amble to link my external style sheet and to change H1 tag and to give it different colors. But I was not sucess with change the color of a layer on which my content sits around.
    I took out the color from my HTML page and gave the same name to the layer in my External Style Sheet with the same color.
    Hope my question and the reason I was able to clarify.
    cheers,
    Dreamer101.1

  • Generate report from database using .xsl style sheet

    I am trying to view test result histories for specific uut serial numbers.
    We are logging all test data to the default access database template that was provided with Teststand.
    Is there a method of generating reports from the database that match the format of those generated at runtime?
    I was surprised to find that the default access database did not contain any gui or pre-made reports matching the xsl style sheets chosen in the report options dialog.
    My database skills are weak, I am able to browse the raw data and I see the relationships between some of the tables, but the prospect of recreating one of the xml report formats in access seems daunting. Am I missing something? what is the best way to print a uut report from test data stored in access?

    Hello msears,
    Thank you for posting on the NI Discussion Forums.  Unfortunately there are no tools available in TestStand for directly converting an Access database to a formatted .xsl report.  It is possible to have a step in a sequence that reads the information from the database, and create the .xsl report as if it had been generated at sequence run-time, by writing those values directly to Locals.ResultList.  Admittedly, this would require some knowledge of Microsoft Access, and the ability to write a program that will extract information from the database, in order to include it as a step in the sequence.
    Is there anything stopping you from creating a formatted .xsl report when the sequence is run (instead of trying to create it from previous data stored in an Access database)?
    Chris_G
    Sr Test Engineer
    Medtronic, Inc.

Maybe you are looking for

  • Cannot install SharePoint 2013 with SP1 on server 2012 R2. IIS configuration error

    Hey Guys, I'm experiencing a problem which seems to be common considering the number of posts I've found about it, but none of the provided solutions worked for me. I'm simply trying to install SharePoint 2013 with SP1 on a Windows Server Standard 20

  • Deleted Items automatically deletes contents

    For my .Mac account...if I deleted a message from the iPhone to the deleted items folder on the server, the message ultimately gets deleted after a day or so. I have the iPhone set to never delete messages as I only want to delete messages manually f

  • How to find out error segments in a group of Idocs

    Hi, 1. For every 5 minutes Idocs are coming in to R3 from some third party systems, and this scenerio some of the Idocs are in failed status as well. My doubt is how to see the all segments at a time, since there might be some problem with the data,

  • Check for Clause Updates ....

    Hello: In PO - Buyer Work Center (R12.0.6), When I do a check for clause updates, the system displays all the latest clauses from the library. On selecting a clause and applying it, I get the latest clauses. However, I want to revert it and get the o

  • Want to increase Photo file size

    I have iOs 5.1 on an iphone 4. My photos are coming in at a file size of 100k and under. I'm on vacation and would like photos of a larger file size. Thanks in advance for any help you can give!