Added color bar between sections of text

I have a brochure document previously created by another designer that needs to be updated.  As you can see from the screenshot below, there is a colored bar spanning the text to divide the two products.  This is something that is configured to automatically added to divide the sections whenever I hit the Enter key.  Unfortunately I don't know anything about this bar, how to change its settings, colors, spacing or how to remove it.  Anyone know how to get the properties of this thing or what we might call this phenomenon so that I can search correctly it online?  I'm a little lost...

Screen shot 2015-06-01 at 5.01.50 PM.png

It's a 'net of paragraph' and it is either a rule above applied the paragraph under the heading, or below applied to the paragraph above, most likely in the context of the paragraph applied to paragraphs style.

Tags: InDesign

Similar Questions

  • Section header text background color

    Hi have a catalog that has an ongoing enforcement section header that will be placed on a black chart the width of the page header.  I wish I had a box of white displays the length of the header section of text, but not the length of the text box set to the master pages for the header.  I want to do this in a batch rather than manual mode by placing the graph around the header on each page text.  It won't work to place a white under the text box as it is part of the background being already a master page item, or have I missed something.  Basically can I have a background color that dynamically adjusts to the length of a text string?

    Thank you

    Dave

    If this text has a character style (or if it does not give him a) the style of characters include an underscore, then do this really thick underscore and give a vertical offset.  The same technique is commonly used to highlight.  There are some other options that you can play with the underline options too.

  • Coloring a font with a RGB, etc. without adding color in the swatch of the document.

    Is it possible to color a font with a RGB, Lab, or CMYK color without adding color in the swatch of the document.

    The only way I know is to add a color to the color chart or use an existing one.

    as

    App.Selection [0]. Characters [0]. FillColor = document. Colors.Add ({colorValue: 255, 53 (160) and space: ColorSpace.RGB}) ;}

    As a side effect to clutter up shades using many colors.

    any ideas?

    Hello Uwe!

    After 03:00 by me 02:00 by you

    I tried the link and it download but I have cs5 cs6 and cc but not cs5.5 and all the scripts worked on them can due to the conversion of files.

    It seems therefore that the following summary is all is correct

    New documents contain some

    Color chart (black, registration, paper and none) the index order is the order in which shades appear in the swatches Panel

    And the colors in the order of the alphabetical index

    named colors without name last and then 'A', 'Z' first color.

    Color documents News-[1] will be a color without a name that can be duplicated to produce other colors without name, noting that duplication should be processes and not the tones.

    So far so good, (not for long)

    Unnamed colors are not read only so if we make a positive effort to remove, we can do that.

    while (app.activeDocument.colors[-1].name == "") app.activeDocument.colors[-1].remove()
    

    Now, we will not have any what swatches without a name to duplicate and will have to use the method of file text marked with John at number 3 above.

    If there is no shade no name and we try to replicate the colors [-1] and it's a color as 'Yellow', then it seems s indesign crash.

    In any case the method below should always work (for regular non-dyed colours etc.).

    // optimized for easy of use but not efficiency !!!
    var doc = app.documents.add();
    var p = doc.pages[0];
    
    p.textFrames.add({contents: "RGB", geometricBounds: ["0mm", "0mm", "30mm", "30mm"], fillColor: addUnnamedColor([0, 0,255])}); // will be a RGB
    p.textFrames.add({contents: "RGB", geometricBounds: ["0mm", "30mm", "30mm", "60mm"], fillColor: addUnnamedColor([0, 255,0], 1666336578)}); // will be a RGB because of value
    p.textFrames.add({contents: "RGB", geometricBounds: ["0mm", "60mm", "30mm", "90mm"], fillColor: addUnnamedColor([65, 50, 102], ColorSpace.RGB)}); // will be a RGB
    p.textFrames.add({contents: "RGB", geometricBounds: ["0mm", "90mm", "30mm", "120mm"], fillColor: addUnnamedColor([84, 90,40],"r")}); // will be a RGB
    p.textFrames.add({contents: "RGB", geometricBounds: ["0mm", "120mm", "30mm", "150mm"], fillColor: addUnnamedColor([232, 0, 128],1)}); // will be a RGB
    
    p.textFrames.add({contents: "Lab", geometricBounds: ["30mm", "0mm", "60mm", "30mm"], fillColor: addUnnamedColor([29.5, 67.5, -112])}); // will be a Lab because of -
    p.textFrames.add({contents: "Lab", geometricBounds: ["30mm", "30mm", "60mm", "60mm"], fillColor: addUnnamedColor([100, -128, 127], 1665941826)}); // will be a Lab because of value
    p.textFrames.add({contents: "Lab", geometricBounds: ["30mm", "60mm", "60mm", "90mm"], fillColor: addUnnamedColor([24.5, 16, -29], ColorSpace.LAB)}); // will be a Lab
    p.textFrames.add({contents: "Lab", geometricBounds: ["30mm", "90mm", "60mm", "120mm"], fillColor: addUnnamedColor([36.8, -9, 27],"l")}); // will be a Lab
    p.textFrames.add({contents: "Lab", geometricBounds: ["30mm", "120mm", "60mm", "150mm"], fillColor: addUnnamedColor([51, 78, 0], -1)}); // will be a Lab because of the 1
    
    p.textFrames.add({contents: "CMYK", geometricBounds: ["60mm", "0mm", "90mm", "30mm"], fillColor: addUnnamedColor([82, 72, 0, 0])}); // will be a CMYK because there are 4 color values
    p.textFrames.add({contents: "CMYK", geometricBounds: ["60mm", "30mm", "90mm", "60mm"], fillColor: addUnnamedColor([60, 0, 100, 0], 1129142603)}); // will be a CMYK because of value
    p.textFrames.add({contents: "CMYK", geometricBounds: ["60mm", "60mm", "90mm", "90mm"], fillColor: addUnnamedColor([84, 90,40, 0], ColorSpace.CMYK)}); // will be a CMYK
    p.textFrames.add({contents: "CMYK", geometricBounds: ["60mm", "90mm", "90mm", "120mm"], fillColor: addUnnamedColor([67, 53, 97.6, 21.7], "c")}); // will be a CMYK
    p.textFrames.add({contents: "CMYK", geometricBounds: ["60mm", "120mm", "90mm", "150mm"], fillColor: addUnnamedColor([0, 100, 0, 0], 0)}); // will be a CMYK
    
    function addUnnamedColor (cValue, space, docToAddColor) {
        docToAddColor = app.documents.length && (docToAddColor || (app.properties.activeDocument && app.activeDocument) || app.documents[0]);
        if (!docToAddColor) return;
        var lastColor = docToAddColor.colors[-1];
        if (!cValue) cValue = [0,0,0,0];
        if (space == 1129142603 || cValue && cValue.length == 4) space = ColorSpace.CMYK;
        else if ((space && space < 0) ||  space && space == 1665941826 || (space && /L|-/i.test(space.toString())) || (cValue && /-/.test(cValue ))) space = ColorSpace.LAB;
        else if ((space && space > 0) || space && space == 1666336578 || (space && /R/i.test(space.toString())) || (cValue && cValue.length == 3)) space = ColorSpace.RGB;
        else space = ColorSpace.CMYK;
        app.doScript (
            """
            var newUnnamedColor = (lastColor.name == "") ? lastColor.duplicate() : taggedColor();
            newUnnamedColor.properties = {space: space, colorValue: cValue};
            """,
            ScriptLanguage.javascript,
            undefined,
            UndoModes.FAST_ENTIRE_SCRIPT
        );
    
         function taggedColor() { // need to use this if no unnamed exists
                 var tagString = "\r " : "WIN>\r ") + ""; // would make more sense to apply the correct value in the tagged text file but I can't be bothered !
                 var tempFile = new File (Folder (Folder.temp) + "/ " + (new Date).getTime() + ".txt");
                 tempFile.open('w');
                 tempFile.write(tagString);
                 tempFile.close();
                 var tempFrame = docToAddColor.pages[-1].textFrames.add();
                 $.sleep(250);
                 tempFrame.place(tempFile);
                 tempFrame.remove();
                 tempFile.remove();
    
             return docToAddColor.colors[-1];
    
         }
    
        return newUnnamedColor;
    }
    

    Apply the function to remove and replace swatch on the other thread both healthier of mind

    Concerning

    Trevor

  • repeating the right wrapper color bar

    How can I repeat a color bar just to the right of my wrapper, but not the left?

    < ! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional / / IN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" > ""

    " < html xmlns =" http://www.w3.org/1999/xhtml ">

    < head >

    < meta http-equiv = "Content-Type" content = text/html"; Charset = UTF-8 "/ >"

    < title > Untitled Document < /title >

    < style type = "text/css" >

    <!--

    {body

    background-color: #FFC;

    margin-top: 0px;

    margin-right: 0px;

    margin-bottom: 0px;

    margin-left: 0px;

    padding-top: 0px;

    padding-right: 0px;

    padding-bottom: 0px;

    padding-left: 0px;

    background-position: 0px;

    }

    {#wrapper}

    background-color: #FFF;

    padding: 0px;

    height: 600px;

    width: 960px;

    top of the margin: 25px;

    margin-right: auto;

    margin-bottom: 0px;

    margin left: auto;

    }

    #menu ul {}

    float: left; margin: 0;

    padding: 0;

    list-style: none;

    width: 150px;

    border: down;

    }

    #menu ul li {}

    position: relative;

    }

    #menu li ul {}

    position: absolute;

    left: 149px;

    top: 0;

    display: none;

    }

    #menu ul li a {}

    display: block;

    text-decoration: none;

    color: #777;

    background: #fff;

    padding: 5px;

    border: 1px solid #ccc;

    border-bottom: 0;

    }

    #menu li: hover ul {display: block ;}}

    {#wrapper #top

    height: 65px;

    padding-top: 15px;

    padding-right: 0px;

    padding-bottom: 10px;

    padding-left: 200px;

    margin: 0px;

    }

    #wrapper #top img {}

    margin-top: 0px;

    margin-right: 10px;

    margin-bottom: 0px;

    margin left: 15px;

    }

    ->

    < / style >

    < / head >

    < body >

    < div class = "wrapper" id = 'wrapper' >

    "" "" "" "" "< div id ="top"> < img name =" "src =" "width ="45"height ="55"alt =" "style =" background-color: #999999 "/ > < img name =" "src =" "width ="45"height ="55"alt =" "style =" background-color: #999999 "/ > < img name =" "src =" "width ="45"height ="55"alt =" "style =" background-color: #999999 "/ > < img name =" "src =" "width ="45"height ="55"alt =" "style =" background-color: #999999 "/ > < img name =" "src =" "width ="45"height ="55"alt =" "style ="background-color " "" "": #999999 "/ > < img name =" "src =" "width ="45"height ="55"alt =" "style =" "background-color: #999999" / > < img name = "" src = "" width = "45" height = "55" alt = "" style = "" background-color: #999999 "/ > < / div >"

    < div id = 'menu' >

    < ul >

    < li > < a href = "#" > home < /a > < /li >

    < li > < a href = "#" > on < /a >

    < ul >

    < li > < a href = "#" > story < /a > < /li >

    < li > < a href = "#" > team < /a > < /li >

    < li > < a href = "#" > offices < /a > < /li >

    < /ul >

    < /li >

    < li > < a href = "#" > Services < /a >

    < ul >

    < li > < a href = "#" > Web Design < /a > < /li >

    < li > < a href = "#" > Internet

    Marketing < /a > < /li >

    < li > < a href = "#" > accommodations < /a > < /li >

    < li > < a href = "#" > names of domain < /a > < /li >

    < li > < a href = "#" > Broadband < /a > < /li >

    < /ul >

    < /li >

    < li > < a href = "#" > contact us < /a >

    < ul >

    < li > < a href = "#" > United Kingdom < /a > < /li >

    < li > < a href = "#" > France < /a > < /li >

    < li > < a href = "#" > US < /a > < /li >

    < li > < a href = "#" > Australia < /a > < /li >

    < /ul >

    < /li >

    < /ul >

    < / div >

    < / div >

    < / body >

    < / html >

    Place an envelope outside left as your interior packing, who has the same margin but * no. * right margin.  Put your extendable bar of color on this outer shell.

  • Scroll bar with the dynamic text field?

    I have a dynamic text field, multi-line. I have attached a scrollbar to it using drag component / move.

    It is empty, but gets text thrown in through the appendText() method when the user clicks a button.

    It works, but if there are more lines which fits in the text field, the scroll bar does not "activate" and allow the user to scroll to see it all.

    I'm sure I'm missing something simple here, can someone please help. Thank you.

    Use the scroll bar update() method after text is added.

  • What are the color bars

    I noticed that my iMac has a lot of different color bars in a track from my macbook just getting started with Logic Pro and don't know

    Each color represents a control surface.

  • Why Firefox keep showing a strange police cursive for certain sections of text on websites like Wikipedia?

    For past month or two, when I consult Wikipedia a few other sites, sections of text are displayed in a large, cursive font. I can't find any rhyme or reason to what sections show this way. This isn't the case at all sites but there are a couple where I'm the see. This makes things really difficult to read. For a screenshot, see this file I put on YouSendIt , YouSendIt.

    Such behavior is usually caused by another font that does not work and that Firefox replaces with the following font in the list. In this case, you can check the Arial Cursiva police.

  • Where can I get the color bar?

    Hai

    I wonder where to find color bars in FCPX?
    I know I can always get different colors of FCP7 bars, but I have now.

    Where can I get them, and why are they not available in FCPX more?

    Thank you.

    Currently using:

    MacBook Pro 15 inch mid-2014, 16 GB 1600 MHz DDR3, 2.5 GHz Intel Core i7, Graphics - Intel Iris Pro 1536 MB, FCPX 10.2.2

    http://www.rippletraining.com/plugin/free-legacy-generators-Final-Cut-Pro-x/

  • color bars on all drawings on laser jet HP CM3220nf MFP printer?

    Uniform size (1 cm) color bars appear across the page (horizontal on A4 portrait prints) I can't find any support for that on the HP Web site search troubleshooting.  Anyone know what to do about it?

    Hi, Dorine,

    It is a HP printer problem.  It has nothing to do with Windows.  The best place to ask questions like this are on the Forum found here HP

    http://h30434.www3.HP.com/

    I managed to find a document printer MFP printers... It is not your model # but you can find the answer to "troubleshoot print quality ' here '"

    NOTE: For an unexpected print quality or causes of paper output, see causes .
  • Precision device 60 spitting red green blue color bars

    Hello world.

    We have two precision 60 camera running SpeakerTrack through a C40. Camera works fine but the other one spits of the colored bars - see below. Reboot the camera solves the problem for a week or two and then it returns. Someone saw something similar or have any ideas why this is happening? The system of control of the House is a Crestron DMPS300C. Is it possible that the code on what could be triggering some mode in the camera?

    Any help would be appreciated. See you soon.

    Hi David

    Greetings of the day!

    If even after the upgrade to version TC7.3.6 of such software suggested by Magnus above, problem persists, you can perform the reset of the camera of the P60.

    Here is the procedure to perform a factory reset:

    1. Locate the button hole of PIN at the back of the camera.

    2. use a pen or similar to push that button reset for 10 seconds.

    3. the camera will be LED in red over the factory reset.

    4. when the reset is complete, restart the camera and the camera LED lights.

    You can also check out the link that explains the above procedure to perform the factory below reset the P60 camera:

    http://bcove.me/f17trop2

    If even after the factory reset issue persists, you can contact TAC and they can provide you with the replacement of the camera of the P60.

    Concerning

    Radhika Sajan

  • How to use the bottom of different color for the areas of text and form on a landing page?

    For our landing page, I like to keep white as the main background but color will have two text as well as a space for these three areas form box, I would use gray.  I got tired of using Fill Content but it will change the whole landing page background color and not only the text box.

    Someone knows how to do this?

    Thank you.

    Hi Angie, you use the WYSIWYG editor to create pages? If so, if I'm reading this right, you are looking to change the background color of the different page elements? You should be able to select each item and apply the color as below:

    I would like to know if this isn't what you are looking for.

    Best,

    Rob

  • The "Scan" button does not appear in the section of text analysis. Please notify.

    I imported a video. I'm in the metadata workspace and the 'Analyze' button does not appear in the section of text analysis. How to make it 'Analyze' button to appear and work?

    In the video tutorials, the Analyze button is already visible.  How it to appear?

    I'm looking to transcribe the audio in a video file to the text.

    Thank you!

    See:

    Using the analysis of speech in first Pro CC

  • I don't know what these color bars!

    Premiere Pro CC.JPG

    Can someone tell me why that these color bars appear in Premiere Pro CC 2015? What do you call them? And what colors meaning? Thank you!!

    Those are markers of double frame. It warns you that have used these same executives elsewhere in your timeline.

    You can alternate their stop clicking in the key in the timeline panel and deselect them.

    MtD

  • The strange color bars appear

    Hello

    When I hade the image to 'fit' strange color bars appear. This glitter of colors in the image when I export to. The bars disappear when I put the image at 100%, but it will still be visible in the image after exporting. Help, please! This problem started after I did the El Captain update on my Macbook pro retina.

    Skärmklipp 2015-10-16 13.36.07.png

    Hi Henrik,

    Change the engine on "Mercury Playback Engine software" only file/project settings/general.

    For more details: Heads up on first with El Capitan

    Kind regards

    Navdeep Pandey

  • How to retrieve a text font, text color, the size of the text in a text layer?

    How to retrieve a text font, text color, the size of the text in a text layer?

    Copy the following code shows how to retrieve the name of the font for a text layer. (cs6 and upward, I think)

    var textProp = myTextLayer.property ("Source Text");

    textDocument var = textProp.value;

    textDocument.font;

    the following thread shows hot to launch AEGP_ExecuteSrcipt() and how to get the result back to the side C:

    http://forums.Adobe.com/message/3625857#3625857

    (he treats actually layers of text!)

Maybe you are looking for

  • USB &amp; Firewire audio interface ports still work as input and output?

    I guess everyone has to start somewhere, even if it is borne by almost everyone I would like to know the answer to my questions, perhaps with good reason, what I don't know is so if the USB ports unique connection and firewire on an audio interface f

  • Windows 7 Starter HP Mini 110 laptop lost administrator password

    Hello. My sister got a laptop for Thanksgiving ' 09 and that she had abandoned for at least a year. Very recently, she tried to start, but she forgot her password. The user is the only user on the computer. I tried pressing F8 and go to repair or net

  • Insufficient memory errors

    Hello im running on a toshiba satellite. I ran low memory last week. I installed 4 GB of memory. but im still getting signs of memory. My original ram was ddr. I was told, by the sales associate, ddr2 has been consistent. Could be the cause of my pro

  • Routing problem its Xperia Z2

    I have a Xperia z2 D6503, I just wanted to ask if the sound of my notifications can be routed by the keynote speaker on the bottom of the unit rather than the speaker of the ear on the top. I find the earphone volume is low, sometimes as I'm bored of

  • Highlight a text of label field

    Hello I have a label field that is added inside the VerticalFieldManager I have set the length and height of the label field in which area I want to display the text. now, I want my text to scroll inside the labelfield. Here is my code please help...