How to add a background color to a line of text?

Hello, Adobe Forums.

I have a small question:


Would it be possible to create a style where it has a background color that crosses the screen? (see attachment)

At work, I was given some materials where this color was made. It was done in MS Word, but it was attached directly to the text. I want to do because I am creating a number of models, and the way I do now is not very convenient (contained in the text box and a text box to second, colorful, is placed under the it). It would be possible to do what I'm doing? Research lead me to highlight the text through the use of underscore + changes in weight and offset, but I need the coloring to go the length of the page.

Thanks for your suggestions.

Untitled.png

Use a net of paragraph. Set the thickness and offset appropriately.

Note that will work well with a paragraph on a single line.

Bob

Tags: InDesign

Similar Questions

  • How to add a background color transition to this menu

    Hi all -

    Struggling to add transition: background color ease 0.5 s; for this menu

    http://www.ossiningdesignguild.com/RWDnav.html

    CSS is here:

    http://www.ossiningdesignguild.com/rwdnav.CSS

    I tried to add to ul li a without success and I would appreciate a helping hand.

    Thanks as always...

    Remove the bottom of the NAV UL. This State is not changing as you do not have: hover class

    You want to trigger a change on: hover ul li then add funds to that:

    NAV ul li a {}

    other styles

    Background: #222;

    -webkit-transition: context facilitated in 0.5 s.

    -moz-transition: context facilitated in 0.5 s.

    -ms-transition: context facilitated in 0.5 s.

    -o - transition: context facilitated in 0.5 s.

    transition: context facilitated in 0.5 s.

    }

    NAV ul li a: hover {}

    Background: red;

    }

    You used gradients and if you try to animate you will get them a flash, you may need to use-webkit-backface-visibility: hidden; to fix this.

    http://css-tricks.com/almanac/properties/b/backface-visibility/

    CSS3 - Webkit facilitate transitions gradients - Stack Overflow

  • How to change the background color of a line when you have the selection of cells in tableview?

    I have a tableview and I chose the selection of cells. How can I change the background color of a line, if I select a cell?

    The usual example using:

    import javafx.application.Application;
    import javafx.beans.binding.Bindings;
    import javafx.beans.binding.BooleanBinding;
    import javafx.beans.property.SimpleStringProperty;
    import javafx.beans.property.StringProperty;
    import javafx.collections.FXCollections;
    import javafx.collections.ListChangeListener.Change;
    import javafx.collections.ObservableList;
    import javafx.collections.ObservableSet;
    import javafx.css.PseudoClass;
    import javafx.geometry.Insets;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.control.Label;
    import javafx.scene.control.SelectionMode;
    import javafx.scene.control.TableColumn;
    import javafx.scene.control.TablePosition;
    import javafx.scene.control.TableRow;
    import javafx.scene.control.TableView;
    import javafx.scene.control.cell.PropertyValueFactory;
    import javafx.scene.layout.VBox;
    import javafx.scene.text.Font;
    import javafx.stage.Stage;
    
    public class RowHighlightedCellSelectionTableViewSample extends Application {
    
        public static void main(String[] args) {
            launch(args);
        }
    
        @Override
        public void start(Stage stage) {
            Scene scene = new Scene(new Group());
            scene.getStylesheets().add(getClass().getResource("selected-row-table.css").toExternalForm());
            stage.setTitle("Table View Sample");
            stage.setWidth(450);
            stage.setHeight(500);
    
            final Label label = new Label("Address Book");
            label.setFont(new Font("Arial", 20));
    
            final TableView table = new TableView<>();
            final ObservableList data =
                FXCollections.observableArrayList(
                    new Person("Jacob", "Smith", "[email protected]"),
                    new Person("Isabella", "Johnson", "[email protected]"),
                    new Person("Ethan", "Williams", "[email protected]"),
                    new Person("Emma", "Jones", "[email protected]"),
                    new Person("Michael", "Brown", "[email protected]")
            );
    
            table.getSelectionModel().setCellSelectionEnabled(true);
            table.getSelectionModel().setSelectionMode(SelectionMode.MULTIPLE);
    
            final PseudoClass selectedRowPseudoClass = PseudoClass.getPseudoClass("selected-row");
            final ObservableSet selectedRowIndexes = FXCollections.observableSet();
            table.getSelectionModel().getSelectedCells().addListener((Change change) -> {
                selectedRowIndexes.clear();
                table.getSelectionModel().getSelectedCells().stream().map(TablePosition::getRow).forEach(row -> {
                    selectedRowIndexes.add(row);
                });
            });
    
            table.setRowFactory(tableView -> {
                final TableRow row = new TableRow<>();
                BooleanBinding selectedRow = Bindings.createBooleanBinding(() ->
                        selectedRowIndexes.contains(new Integer(row.getIndex())), row.indexProperty(), selectedRowIndexes);
                selectedRow.addListener((observable, oldValue, newValue) ->
                    row.pseudoClassStateChanged(selectedRowPseudoClass, newValue)
                );
                return row ;
            });
    
            TableColumn firstNameCol = new TableColumn<>("First Name");
            firstNameCol.setMinWidth(100);
            firstNameCol.setCellValueFactory(new PropertyValueFactory<>("firstName"));
    
            TableColumn lastNameCol = new TableColumn<>("Last Name");
            lastNameCol.setMinWidth(100);
            lastNameCol.setCellValueFactory(new PropertyValueFactory<>("lastName"));
    
            TableColumn emailCol = new TableColumn<>("Email");
            emailCol.setMinWidth(200);
            emailCol.setCellValueFactory(new PropertyValueFactory<>("email"));
    
            table.setItems(data);
            table.getColumns().addAll(firstNameCol, lastNameCol, emailCol);
    
            final VBox vbox = new VBox();
            vbox.setSpacing(5);
            vbox.setPadding(new Insets(10, 0, 0, 10));
            vbox.getChildren().addAll(label, table);
    
            ((Group) scene.getRoot()).getChildren().addAll(vbox);
    
            stage.setScene(scene);
            stage.show();
        }
    
        public static class Person {
    
            private final StringProperty firstName;
            private final StringProperty lastName;
            private final StringProperty email;
    
            private Person(String fName, String lName, String email) {
                this.firstName = new SimpleStringProperty(fName);
                this.lastName = new SimpleStringProperty(lName);
                this.email = new SimpleStringProperty(email);
            }
    
            public String getFirstName() {
                return firstName.get();
            }
    
            public void setFirstName(String fName) {
                firstName.set(fName);
            }
    
            public StringProperty firstNameProperty() {
                return firstName ;
            }
    
            public String getLastName() {
                return lastName.get();
            }
    
            public void setLastName(String fName) {
                lastName.set(fName);
            }
    
            public StringProperty lastNameProperty() {
                return lastName ;
            }
    
            public String getEmail() {
                return email.get();
            }
    
            public void setEmail(String fName) {
                email.set(fName);
            }
    
            public StringProperty emailProperty() {
                return email ;
            }
        }
    }
    

    And then the selected line - table.css:

    .table-line-cell: {selected row

    -fx-background-color: lightskyblue;

    }

  • How to change the background color of selection of the selected item in the drop-down box of choice?

    How to change the background color of selection of the selected item in the drop-down box of choice?

    By default, the selection background color like 'blue', but if I want it to be "yellow" for example, how should I do?

    Thank you

    The id is applied by (I think) the skin of the ChoiceBox class. You don't need to define.

    You must apply the css in an external style sheet. You can apply the external style sheet to any parent of the box of your choice, or on-site (the most usual way to do it).

    Example:

    import java.util.ArrayList;
    import java.util.List;
    
    import javafx.application.Application;
    import javafx.scene.Scene;
    import javafx.scene.control.ChoiceBox;
    import javafx.scene.layout.VBox;
    import javafx.stage.Stage;
    
    public class ChoiceBoxTest extends Application {
    
      @Override
      public void start(Stage primaryStage) throws Exception {
        primaryStage.setTitle("Example 2");
    
        final ChoiceBox choiceBox = new ChoiceBox<>();
    
        List tempResult = new ArrayList();
        for (int i = 0; i < 10; i++) {
          tempResult.add("Item " + i);
        }
        choiceBox.getItems().setAll(tempResult);
    
        VBox root = new VBox();
        root.getChildren().add(choiceBox);
        final Scene scene = new Scene(root, 300, 250);
        scene.getStylesheets().add("choiceBox.css");
        primaryStage.setScene(scene);
        primaryStage.show();
      }
    
      public static void main(String[] args) {
        launch(args);
      }
    
    }
    

    choiceBox.css:

    @CHARSET "UTF-8";
    #choice-box-menu-item:focused  {
     -fx-background-color: yellow ;
    }
    #choice-box-menu-item .label {
     -fx-text-fill: black ;
    }
    

    Post edited by: James_D

  • How to set the background color of a page_item?

    I was pasting "background-color: #5CD65C" in a number of places, like the 'attributes of the HTML table cells' under the label and the tabs of the item, but get no results. Can someone tell me how to set the background color of a cell, please?

    Hi Doug,.
    One method is to add a style to your header html in page attributes, if you add the below css styling and the change of the name of the item page (#P2_FIRST_NAME) to your he should style correctly:

    Thank you

    Paul

  • How to change the background color of string programmatically?

    How to change the background color of string programmatically?

    Are you talking about string indicator and control chain? If so, right-click on a control/indicator of string and select Create-> property Node-> text-> text-> BG Color colors. Change to write and a number of the color you want to use phone.

  • How can set the background color of the status bar?

    Quote from the old forum:

    Comments: comments
    How can set the background color of the status bar?
    Posted the: July 17, 2008 02:56
     
    How can set the background color of the status bar?
    Using this code for the status bar:
    LabelField statusField = new LabelField ("Good Morning", LabelField.USE_ALL_WIDTH |) LabelField.NON_FOCUSABLE | LabelField.HCENTER)
    {
    int _backgroundColour = Color.LIGHTGREEN;
    public void paint (Graphics g)
    {
    g.setBackgroundColor (Color.RED);
    g.Clear ();
    Super.Paint (g);
    }
    };

    Font defaultfont = Font.getDefault ();
    Police smallfont = defaultfont.derive (Font.PLAIN, 12);

    statusField.setFont (smallfont);
    setStatus (statusField);

    When I ran the code you have above, my status background color was red.  Is not what you see?  If so, please provide the BlackBerry model and software version that you are testing.  You can find this under Options.

    Or if you try to do something else, please provide details.

    I tested this in the BlackBerry Simulator included with version 4.5.0 BlackBerry JDE (4.5.0.44).

    To do this in version 4.1, first call getColor and save the current color.  Then call setColor, setting the color to the color you want to use for the background.  After this call call fillRect, starting with 0, 0 and go to the size of the field (use this.getWidth () and this.getHeight () to get this).  This must fill in the field with your specified color.

    To allow the drawing of the default content of the field call setColor once again, passing in the original color, then call super.paint.

  • How to change the background color

    How to change the background color of the label field, how to do it thanks

    I can change the color of labelfield, but I want to change the background,

    How can I do this

    Thank you.

    I do not know mantaker do not want to forget the call to super...

    public void paint (Graphics gs) {}

    gs.setBackgroundColor (0x00FF0000); red background

    GS. Clear();

    Super.Paint (GS);

    }

  • How to add music background and stationary to windows live mail

    How to add music background and stationary to windows live mail... IF SO... HOW?

    There may be something there, but I don't know any personally. If you have professional, enterprise or ultimate edition, you can use OE in XP mode.
     
    How to use Outlook Express in Windows 7
    http://www.oehelp.com/OEnWin7.aspx
     
    You can also hack into Windows Mail, but it is not ideal IMO.
     
    How to restore Windows Mail in Windows 7
    http://www.SevenForums.com/tutorials/5481-Windows-mail.html
    How do I activate the Windows Mail application in Windows 7
    http://www.TechSpot.com/VB/topic137494.html
  • How to change the background color dynamically on the page of the ofa

    How to change the background color dynamically on the page of the ofa

    Hello

    Can you please let me know the dynamic conditions to change the background color?

    Thank you

    Vincent

  • How to change the background color of the code written DW page but not the Web page...

    How to change the background color of the code written DW page but not the Web page...

    If you have DWCC2015, you can change to edit > Preferences > coloring Code and either choose a new theme (RecoGnEyes is the background dark code by default) or you can change it to what you want in the background field by default.

    2014 CC had no theme options, but you can change the background color in the same place.

    I think that some of the previous versions also had the option, but I don't have them on my machine to check.

  • How to change the background color of work in Photoshop CC 2015 plan

    How to change the background color of work in Photoshop CC 2015 plan

    Just tried to change these settings:

    Preferences-> Performance-> settings of the graphics processor-> advanced settings... The change of drawing in 'Normal' mode (mine was 'Basic'). Suddenly I can not change the background.

    Hope this works for you all also.

  • Can I add a background color to fill &amp; sign?

    Is it possible to add a background color of an infill and sign?

    Not at the moment - you want to have a piece of text that you add when filling by & sign have a background color behind the text of the border size of the blue that you see when add you it?

    Thank you

    Josh

  • I NEED TO KNOW HOW TO CHANGE THE BACKGROUND COLOR OF MY INDEX FINGER. HTML PAGE

    I need to know how to change the background color of my page index.html on Dream weaver cs6.

    With CSS:

    {body

    background-color: #FF0000;

    }

    Nancy O.

  • How to to remove background color behind send button?

    Hey there...

    I adapted my "submit button", using CSS and for some reason a grey color background still shows upwards... I used PNG files with transparency which is how I see the background color... I've looked everywhere to find out how to take the gray out under pictures... can you please help...?

    The images are placed using 'backgroud image' in the class 'cat_button '.

    Link to an example is here... http://svx0.BusinessCatalyst.com/pages/contact

    Thank you...

    Sean

    Not in firefox so I guess that your viewing in IE?

    a bottom if you did it as a png with transparency and you want to make sure and element is correct, you do:

    background: transparent url("..) (' / images/submit_Button.png ") no-repeat 0 0; For example, to ensure there is no game overiding background color.

    You rhought on just make the button in CSS and CSS3 usage for modern browsers with a look more simplified for IE?

Maybe you are looking for

  • How can I disable each site remembering the download directory?

    This is similar to a post I did a few days ago. Reposting because I don't have all the answers to this post, most likely due to my having accidentally marked one of the responses as 'useful' before checking to make sure that if he solved the problem.

  • Satellite 1410: Question: DVD-/ + R?

    Hello!I have a problem with my laptop Satellite series 1410: I wanted to burn a movie to a DVD and I bought the DVD called "DVD-R for general". Or I need DVD + r?How can I find that out and question, when I use the wrong type of DVD? Thank you very m

  • Windows the redesign

    I am running LabVIEW on virtual machines, and I get constant redesign of my LV Windows, making me lose track of the active VI. When recording or at random times when project desides he must update some VI due to a fluctuation quantum all movements. M

  • Drive__XP SP3.5__Low hard disk space

    Hello My 60 GB hard drive in my netbook is almost full, even if I deleted all personal objects and performs the basic package it came with (XP, Microsoft Works). I get the disk space warning is very low, and I want to free up space on the disk if pos

  • Muth LED is not percent after the installation of the driver

    my laptop model is hp pavillion sleekbook 14-b065tx after installing windows 7 64 bit and also after the update drivers that the mute light didn't work. But its function does not work. But other Led indications are very well What would be the problem