Change the background color of line based on a column value

Hello

in a report, I want to change the record to the red background color if the value of a specific column is 'NO' in the folder. Please help me.

Thank you.

Try this

I had this same problem and found that by using the following only highlighted the background of the text and not the entire cell


I then swapped the use of div (as below) and this has solved my problem

select test_table.column1 as "yes_no",
      CASE WHEN column2='NO'
         THEN '
'||column2||'
' ELSE column2 END "column2" from test_table

This has been tested in 3.2.1 - should work with other versions so

Gareth

Tags: Database

Similar Questions

  • How can I change the background color of lines / odd in a panelCollection

    Hello world.

    I use a panelCollection and I need to change the color backgroung odd/even rows in the table,
    How can I do this using a style sheet, is there a special selector or property for that?

    globalResultCollection (object UIPanelCollection), is a collection of Our elements, and it works fine.
    I just want to change the background color by default for the lines.


    Thank you

    < af:panelCollection id = "GLOBAL_RESULT_COLLECTION".
    Binding = "#{admin." View.globalResultCollection}.
    styleClass = "globalResultCollectionRegion."
    clientComponent = "true" >

    < f: facet = 'menu' name >
    < af:menu id = "GLOBAL_OPERATION_MENU".
    Binding = "#{admin." View.globalOperationMenu}"/ >
    < / f: facet >

    < f: facet name = "toolbar" >
    < af:toolbar inlineStyle = "width: 100%".
    Binding = "#{admin." View.globalOperationToolbar}.
    ID = "OPERATION_TOOLBAR" / >
    < / f: facet >

    < / af:panelCollection >

    Hello

    Use this:
    AF | : the table-row af data | : the column cell data {background-color: #CCCCFF ;}}
    AF | : the table-row af data | column: banded-data-cell {background-color: #FFCCCC ;}}

    Kind regards
    s o v i e t

  • Change the background color of line indicator

    I'm doing an indicator of string with a black background or make it to which the channel indicator is transparent

    Thank you

    You can change the background color of the control a chain using the paint tool. Choose View > Tool Palette.

    Select the icon below a brush.

    Right-click on the background area of your control of the chain.

    A color mixer will appear - select a color block or the T in the upper right corner to transparent.

  • How can I change the background color of textField2 based on the value entered in textField1(Acrobat DC)?

    Could you please help me solve this problem (I'm new to adobe acrobat cc):

    JavaScript written in textfield1 (Color1) - Actions:

    var C1 = this.getField ("Color1");

    var S1 = this.getField ("Swatch1");

    Switch (C1.rawValue)

    {

    case "PMS 100":

    S1. Border.Fill.Color.Value = "0,174,239";

    break;

    case "PMS 101":

    S1. Border.Fill.Color.Value = "236,0,140";

    break;

    }

    Hello.

    You can use this JavaScript (not tested) as a calculation script in the textfield2:

    var myField = this.getField("textField1");
    if (myField.valueAsString == "AAA") {event.target.fillColor = color.red;}
    else if (myField.valueAsString == "BBB") {event.target.fillColor = color.blue;}
    else if (myField.valueAsString == "CCC") {event.target.fillColor = color.black;}
    // etc.
    
  • Change the background color based on the value

    I'm sure that this is a trivial question, but I can't seem to find the method to do it.

    I want to change the background color of an indicator according to its value.

    For example: if I have a set of say 123degF, I would like to the color of background color green if the value is either 1% or +/-2degF.

    Otherwise the color could be if above red and blue if under.

    I was able to schedule a psychic acomplishes, but with more than 50 indicators the interface gets quite busy.

    Santosh is correct. Here is a small example of the implementation of this code:

    I've also attached a copy of this VI, with the connected devices, so you can use it as a subvi if you wish.

    He takes input of temperature limit lower and upper limit. It then returns the value of the temperature, with the color of the indicator of change.

  • 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 a single line

    Hi, OTN,.

    I use JDeveloper with ADF faces 11.1.1.2 in the view layer. My question is how to change the background color of a single line in af:table?.

    Hi idir Mitra
    You can use EL to bind column for example inlineStyle (#{row.id == null?' background-color: rgb (255,214,165);':'background-color:red'})})

    Cordially Abhilash.S

  • How to change the background color of a text indicator?

    I have an ASCII/text indicator on my FP. FP uses a .png file as the background, with a block diagram. The diagram is a white background with lines black, figures, etc. I wish I could change the background color of the indicator of ASCII text / to white, so that it better matches the white background of the block diagram.

    LabView 2009 SP1 running.

    Thank you

    Have you tried the brush in the tool palette?

  • Change the background color for a selected item in a ListView?

    Hello

    No idea how to change the color of tbackground of a ListView selected item to blue for a different color?

    I tried wrapping the ListView in a container, then by changing the background color of the container, but it does not work. And ListView, nor the ListItemComponent takes a background attribute.

    Thank you

    Oh, I did that last night.
    Thus, in the container for StandardItem, add this line:

     background: ListItem.selected || ListItem.active ? Color.create("#4D9EC9") : Color.Transparent
    

    and onTriggerred of the signal, add two lines:

    // for highlighting
    listView.select(indexPath, true);
    
    // for clearing highlight
    listView.clearSelection();
    

    PS: listView is the id of the ListView

    ListView {
        id: listView
    ....
    
  • Is it possible to change the background color of apex_application.g_print_success_message?

    I have a process of application the button create: -.

    DECLARE

    Start

    IF PACKAGENAME. FUNCTIONNAME (PARAMETERS) = 1 THEN

    apex_application.g_print_success_message: = 'Record already exists for a same schedule. "

    ON THE OTHER

    INSERT PROCESSES

    END IF;

    END;

    With apex_application.g_print_success_message, everything works fine but

    If I use apex_application.g_print_error_message

    giving following error

    ORA-06550: line 10, column 20: PLS-00302: component 'G_PRINT_ERROR_MESSAGE' must be declared ORA-06550: line 10, column 3: PL/SQL: statement ignored

    Selection_002.png

    Because

    apex_application.g_print_error_message is a variable,

    but you can't run it as an "order".

    But my question is can we change the background color of apex_application.g_print_success_message

    not only red text? is it possible.

    Hi Reema,

    Modified your sample application to change the color of the success message.

    This is the change of background color

    Change the Page-> Css-> - Inline. Insert the code below

    #success-message {
        background: none no-repeat scroll 0 0 #99CCFF !important;
    }
    

    You can replace the color code you want.

    hope this helps you,

    Kind regards

    Jitendra

  • Change the background color of the banner in the theme of the APEX 25

    Hi guys,.

    I'm changing the background color of the banner in the theme of the APEX 25 (in white).

    Oracle.apex.com: Application Express 4.2.5.00.08

    Theme/UI: 25. Reactive blue

    Page template: A level Tabs - no side bar

    Using Internet Explorer 8
    I have created a sample in oracle.apex.com too, see below for credentials

    What I've done so far:

    1. create a file named orange.css with a single line:


    hgroup {background: white ;}}


    Downloaded this css file via:

    Components shared = > Cascading Style sheets

    2 then reference this CSS via the shared components = > templates = > edit the template Page = > a level Tabs - No. Sidebar = > definition = > header

    Added this line before the < / head > tag:

    < link rel = "stylesheet" href = "" #WORKSPACE_IMAGES #orange.css "type =" text/css">"

    Then changed:

    < h1 > < a href = "" #HOME_LINK # "id ="uLogo"> #LOGO # < /a > < / h1 >"

    VOX

    < hgroup > < a href = "" #HOME_LINK # "id ="uLogo"> #LOGO # < /a > < / hgroup >"

    Although the CSS works well, I have two questions:

    1. the sides of the banner are blue instead of white

    2. the disconnect next to the user name button is hidden and only appears when you browse on

    Does anyone know how to solve these problems?

    Here is a link with the model of the application:

    https://Apex.Oracle.com/pls/Apex/f?p=4500:1000:115959518208631

    Workspace: ORANGE

    User: guest

    Password: 01range

    My email: [email protected]

    Much appreciated!

    Jeroen van Meenen wrote:

    Then changed:

    VOX

    You should not use hgroup here. Leave that as a h1 element.

    • hgrouphas been removed from the W3C HTML specification.
    • With the help of hgroup of this way is non-compliant because it does not contain at least one child h1-h6 element.

    Although the CSS works well, I have two questions:

    1. the sides of the banner are blue instead of white

    The original blue background of the theme is actually applied to the containing header element, not the h1 (or hgroup in your example), it is the rule that must be overridden:

    header#uHeader {
      background: #fff;
    }
    

    2. the disconnect next to the user name button is hidden and only appears when you browse on

    The link to logout of the theme is white to contrast with the original blue background. What should be replaced by a dark to be visible on the new white foreground color, and a contrasting hover appearance applied:

    div.userBlock a:link,
    div.userBlock a:visited {
      color: #004F7C;
    }
    div.userBlock a:hover {
      background-color: #b6ceed;
      color: #fff;
    }
    
  • Change the background color of the table rows af of those who have a larger date today

    Greetings,

    I have a table of af of insurance of the person which show details for each insurance policy. I have change the sql query table to show only those that the insurance is still active ('end_date' variable is greater than today).

    Everything works fine, but on doubts, I want to show all the records, but change the background color red of those lines which have expired ('end_date' variable less today).

    Can you help me please?

    Thanks in advance.

    Using Jdeveloper v11.1.2.4.0 (JSF - components of the ADF)

    This example shows how to do this http://andrejusb.blogspot.de/2010/04/changed-row-highlighting-in-oracle-adf.html

    Timo

  • To change the background color. Using Dreamweaver CS4

    I can't change the background color [greenish gray color], a table, a web page... Please see http://www.urefillit.com/index2.html can use some help here... I also note that the background foliage is slow loading... Any suggestions as to what caused the delay of loading?

    Thanks in advance!

    Using CS4... The Code is as follows:

    "< html xmlns ="http://www.w3.org/1999/xhtml"lang ="fr"XML: lang ="fr">"
    < head >
    < meta name = "msvalidate.01" content = "F33B6715B987C15F0176AAFDA87BE459" / > "
    < name meta = "generator" content = "HTML Tidy for Linux (to March 25, 2009), see www.w3.org"/ >
    < title > Urefillit produces and sells Octenol, luring Asian Tiger and Kaboom products replacement type < /title >
    < meta http-equiv = "Content-Type" content = text/html"; charset = utf-8 "/ >"
    < name meta = "Description" content = "we focus on providing high quality products and a commitment to customer satisfaction - we will do everything we can to meet your expectations for the fight against mosquitoes best price and quality and Kaboom replacement type products available in the market today" / >
    < meta name = "Keywords" content = "Octenol, Lure, Asian Tiger mosquito lure, Kaboom refills, killing mosquitoes mosquito magnet machine" / >
    < name meta = "Robots" content = "index, follow" / >
    < style type = "text/css" >
    / * < ! [CDATA [* /]]
    {body
    background-image: url(images/SambucusBlackLaceFoliage.jpg);
    background-color: #FFCC66;
    }
    Body.C7 {background-attachment: fixed}
    div. C6 {text-align: center}
    p.C5 {do-family: Arial; do-size: 70%; text-align: center}
    span. C4 {do-family: Arial; size are: 70 %}}
    span. C3 {do-family: Courier}
    p.C2 {text-align: center}
    span. C1 {do-family: Courier; do-size: 120 %}}
    /*]]>*/
    . C7 table tr {.c11}
    background-color: #F60;
    do-size: 18px;
    }
    TR .c11 table tr td p {}
    do-family: "Times New Roman", Times, serif;
    font size: 16pt;
    }
    . C7 table tr .c11 table tr td p {}
    do-family: "Times New Roman", Times, serif;
    font-size: XL;
    }
    . C7 table tr .c11 table tr td p {}
    do-family: "Times New Roman", Times, serif;
    font size: 16pt;
    }
    . C7 table tr .c11 #table2 tr th {}
    background-color: #0F6;
    }
    /*]]>*/
    < / style >

    "< script src ="file:///C|/Scripts/swfobject_modified.js"type =" text/javascript">"
    < /script >
    < style type = "text/css" >
    / * < ! [CDATA [* /]]

    table. C16 {background-color: #FFD9B3}
    p.C15 {text-autospace: none ;}}
    Th.C14 {background-color: #00FF99}
    TD. C13 {background-color: #00FF99}
    Th.C12 {background-color: #FF6666}
    H2. C11 {make-size: 120 %}}
    span. C10 {make-size: 150 %}}
    span. C9 {text-decoration: underline}
    div. C8 {make-size: 70%; text-align: right}
    TD. C7 {background-color: #003399}
    p.C6 {text-decoration: underline}
    table. C5 {background-color: #FFCC66}
    TD. C4 {background-color: #FFFFFF}
    div. C3 {text-align: center}
    {table. C2}
    background-color: #0F6;
    do-size: 18px;
    }
    Th.C1 {background-color: #FFFFFF}
    . C7 tr table th {} .c7
    color: #008040;
    }
    . C7 tr th .c7 table {strong}
    Color: #000;
    }
    . C7 tr table th {} .c7
    Color: #000;
    }
    . C7 tr table th .c1 {strong}
    color: #008000;
    }
    /*]]>*/
    < / style >

    < style type = "text/css" >
    / * < ! [CDATA [* /]]
    {body
    background-color: #FFCC33;
    }
    Th.C1 {background-color: #FFCC66}
    /*]]>*/
    Th.C11 {background-color: #FFFFFF}
    {Th.C11}
    background-color: #F93;
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    visibility: visible;
    Width: auto;
    }
    . C7 table tr .c11 #table2 tr e .c2 a strong {.c3
    Color: #00F;
    }
    . C7 table tr .c11 #table2 tr td a {}
    Color: #00F;
    }
    . C7 table tr .c11 #table2 tr td a {}
    Color: #00F;
    }
    . C7 table tr .c11 #table2 tr td p {}
    Color: #00F;
    }
    . BLUE {color: #00F;}
    }
    . BLUE {color: #00F;}
    }
    . Blue {color: #00F;}
    }
    . Blue {color: #00F;}
    }
    p.C1 {text-align: center}
    p.C13 {do-size: 80%; text-align: center}
    p.C71 {margin-right: 0;}
    margin-left: 0;
    font-size: 9.5pt;
    do-family: "Comic Sans MS";
    color: #000040;
    }
    span. C101 {make-size: 80 %}}
    span. C12 {do-family: Courier New, Courier, monospace}
    span. C6 {do-family: Arial}
    < / style >

    < style type = "text/css" >
    / * < ! [CDATA [* /]]
    IMG. C16 {border: 0; width: 88px; height: 31px}
    span. C15 {make-size: 120 %}}
    div. C14 {color: #FFFFFF; do-size: 150%; text-align: center}
    span. C13 {make-size: 18.0pt; color: #B90D09 ;}}
    Strong.C12 {text-decoration: underline}
    span. C11 {do-family: "Comic Sans MS"; color: red ;}}
    EM. C10 {text-decoration: underline}
    span. C9 {color: red ;}}
    table. C8 {background-color: #006600}
    TD. C7 {background-color: #006600}
    span. C6 {make-size: 150%; text-decoration: underline}
    p.C5 {text-decoration: underline}
    p.C4 {text-align: center; text-decoration: underline}
    p.C3 {text-align: center}
    span. C2 {text-decoration: underline}
    div. C1 {text-align: center}
    /*]]>*/
    . C7 table tr .c11 #table2 tr td p {}
    Color: #00F;
    }
    {.eight}
    Color: #F00;
    }
    < / style >

    < style type = "text/css" >
    / * < ! [CDATA [* /]]
    <!--
    {p.MsoNormal}
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 10.0pt;
    margin-left: 0;
    line-height: 115%;
    font-size: 11.0pt;
    font family: 'Calibri', 'sans-serif ';
    }
    . C7 table tr .c11 strong .c5 u span {}
    color: #008080;
    }
    . C7 table tr .c11 p u em {}
    Color: #00F;
    }
    . C7 table tr .c11 p em {} u
    Color: #00F;
    }
    . Table tr .c11 tr td table C7. C7.C6 .c10 {}
    do-family: 'Courier New', Courier, monospace;
    }
    . Table tr .c11 tr td table C7. U solid MsoNormal span {}
    Color: #00F;
    }
    . Table tr .c11 tr td table C7. U solid MsoNormal span {}
    do-family: "Times New Roman", Times, serif;
    }
    . C7 table table tr td p u .c11 tr {strong}
    do-family: "Times New Roman", Times, serif;
    }
    . C7 table table tr td p u .c11 tr {strong}
    do-family: "Times New Roman", Times, serif;
    }
    . C7 table table tr td p u .c11 tr {strong}
    do-size: 16px;
    }
    . C7 table tr .c11 table tr td p {}
    do-size: 10px;
    }
    . C7 table tr .c11 table tr td p {}
    do-size: 12px;
    }
    . C7 table tr .c11 table tr td p {}
    do-size: 12px;
    }
    . C7 table tr .c11 table tr td p {}
    do-size: 12px;
    }
    . Table tr .c11 tr td table C7. U solid MsoNormal span {}
    color: #000040;
    }
    . C7 table tr .c11 .c7 tbody tr e a {}
    Color: #000;
    }
    . C7 table tr .c11 #table2 tr td a {}
    Color: #000;
    }
    . C7 table tr .c11 #table2 tr e .c2 {a}
    Color: #000;
    do-size: 18px;
    }
    . C7 table tr .c11 #table2 tr e a {}
    Color: #000;
    do-size: 18px;
    }
    . C7 table tr .c11 p u police strong {}
    color: #B80738;
    }
    . C7 table tr .c11 u p strong {}
    color: #B80738;
    }
    . C7 table table tr td p u .c11 tr {strong}
    font size: 24 PX.
    }
    . C7 table tr .c11 table tr td p {}
    font size: 16pt;
    }
    . C7 table tr .c11. MsoNormal span {}
    font size: 24 PX.
    }
    . C7 table tr .c11. MsoNormal span {}
    font size: 24 PX.
    }
    . C7 table tr .c11. MsoNormal span {}
    font size: 24 PX.
    }
    . C7 table tr .c11 #table2 tr th {}
    do-size: 16px;
    }
    . C7 table tr .c11 #table2 tr e p a {}
    do-size: 18px;
    }
    . C7 table tr .c11 #table2 tr e p a {}
    do-size: 18px;
    }
    . C7 table tr .c11 #table2 tr e p a {}
    do-size: 18px;
    }
    . Table tr .c11 tr td table C7. MsoNormal {a}
    do-size: 18px;
    }
    . Table tr .c11 tr td table C7. MsoNormal {a}
    font size: 24 PX.
    }
    . C7 table tr .c11. MsoNormal span {}
    font size: 24 PX.
    }
    . C7 table tr .c11 tr table th a {}
    font size: 18pt;
    }
    ->
    /*]]>*/
    < / style >

    < style type = "text/css" >
    / * < ! [CDATA [* /]]
    table. C11 {background-color: #0033FF}
    Th.C10 {background-color: #8D8D5E}
    span. C9 {do-family: "Times New Roman", "serif"; font-size: 18pt ;}}
    p.C8 {line-height: normal; margin-bottom: .0001pt; text-align: center}
    p.C7 {; do-family: "Times New Roman", "serif"; do-size: 14pt; text-align: center}
    p.C6 {; do-family: "Times New Roman", "serif"; color: #00F; font size: 18pt; font style: italic; text-align: center}
    span. C5 {make-style: italic}
    span. C4 {line-height: 115%; do-family: "Times New Roman", "serif"; font-size: 16.0pt ;}}
    p.C3 {text-align: center}
    Strong.C2 {text-decoration: underline}
    Th.C1 {background-color: #FFFFFF}
    /*]]>*/
    < / style >
    < / head >
    < body >
    /*
    <! [CDATA [* /]]
    & amp; amp; Lt;! --
    #Layer1 {position: absolute;}
    Width: 110px;
    height: 34px;
    z-index: 1;
    left: 430px;
    top: 1116px;
    visibility: visible ;}
    #Layer2 {position: absolute;}
    Width: 170px;
    height: 33px;
    z-index: 1;
    left: 536px;
    top: 652px ;}
    p.C7 {color: #000000; do-family: Arial; size are: 80 %}}
    -& amp; amp; GT;
    / *]] >
    "* / < script src ="file:///C|/Scripts/AC_RunActiveContent.js"type =" text/javascript">"
    < /script >
    < table class = "c11" width = "1250" border = "15" align = "center" cellpadding = "5" >
    < b >
    < width th = "888" height = "2254" align = "center" valign = "top" class = "c10 c11" scope = "col" >
    < p > < br / >
    < img src = "images/webpagepicture.jpg" alt = "Header of WEB PAGE" width = "1267" height = "212" border = "6" align = "middle" / > < br / > < / p > "
    < table width = "1188" border = "6" align = "center" class = "c2" id = "table2" >
    < b >
    < th width = "143" scope = "col" >
    < p > < a href = "OctenolLure.html" > < /a > Octenol bait < /p > ""
    < /th >
    < th width = "145" scope = "col" > < a href = "FlowtronTypeLure.html" > FlowtronTypeLure < /a > < /th >
    < th width = "145" scope = "col" >
    < p > < a href = "AsianTiger.html" > < / a > < a href = "AsianTiger.html" > Asian Tiger Lure < /a > < /p > "
    < /th >
    < th width = "146" scope = "col" > < a href = "Combolure.html" > Combo Lure < /a > < br / > ""
    (Octenol & amp; Lactic acid) < /th >
    < th width = "146" scope = "col" >
    < p > < a href = "SkeeterVacLure.html" > attractant Lure < /a > < /p > ""
    < /th >
    < th width = "145" scope = "col" >
    < class p = "c2" > < a href = "mosquitomagnettroubleshootingguide.html" > Mosquito Magnet < /a > < /p > ""
    < class p = "c2" > < a href = "mosquitomagnettroubleshootingguide.html" > Guide to repair < /a > < /p > ""
    < /th >
    < td width = "145" align = "center" valign = "middle" scope = "col" > < a href = "Kaboom.html" > Kaboom < /a > < a href = "/ Kaboom.html" > < /a > < table > tablets replacement ""
    "< th = height"111"width ="104"align ="center"valign ="middle"scope ="col"> < a href ="https://www.paypal.com/us/verified/pal=sales%40urefillit%2ecom"target ="_blank"" > < img src = "https://www.paypal.com/en_US/i/icon/verification_seal.gif" alt = "Official PayPal seal" width = "98" height = "108" border = "0" align = "top" / > < /a > < br / >
    < br / > < /th >
    < /tr >
    < /table >
    < br / >
    < table width = "282" border = '20' align = "center" cellpadding = "0" >
    < b >
    "< class th ="c1"width ="128"scope ="col"> < img src="images/flying%20mosquito.gif "alt =" "* Please DESCRIBE THIS IMAGE *" width = "97" height = "75" / > < /th > "
    < class th = "c1" width = "104" scope = "col" > < a href = "#" onClick = "window.open ('https://www.sitelock.com/verify.php?site=www.urefillit.com ',' SiteLock ',' width = 600, height = 6 00, left = 160, high = 170'); " "> < img src="//shield.sitelock.com/shield/ www.urefillit.com "alt ="security Web site"align ="absmiddle"title ="SiteLock"/ > < /a > < /th >
    < /tr >
    < /table >
    < p > <! - start RatePoint Site Seal - please, do not change->
    <! - end RatePoint Site Seal - please, do not change->
    <! - start RatePoint subscription tool - please, do not change->
    <! - end RatePoint subscription tool - please, do not change->
    ======================================================================================</p >
    < table width = "1002" border = "0" align = "center" >
    < b >
    < td width = "996" >
    < class p = 'c3' > < strong class = "c2" > all about Urefillit, LLC < facilities > < / p >
    < class p = 'c3' > < span class = 'c4' > Urefillit, LLC prides itself on the quality and consistency of its fine products, that are designed, produced and manufactured in the USA. Production control of quality to the final shipment, our highly qualified team ensures the best quality and reliable service for our customers. We focus on providing high quality products and a commitment to the satisfaction of the customer. We will do everything that we can to meet your expectations for the best price and quality mosquito lures, Kaboom replacement tablets and tablets of bromine available on the market today. With a variety of offerings to choose from, we are sure you will be happy with your purchase. Thank you for visiting our website and if you have any comments or questions, do not hesitate to contact us. We hope to see you soon! </span > < br / > < / p >
    < class p 'c3' = > < img src = "images/made_in_USA.jpg" width = "221" height = "228" alt = "usa" / > < br / > "
    < br / > < / p >
    <p class="c3">****************************************************************************** *************<br />
    < br / > < / p >
    < class p 'c6' = > REFUND POLICY: < span class = "c5" > our number one goal is your satisfaction. If our product is not as advertised you can then return item unused for a refund. 25% restocking fee may apply. Buyer pays return shipping fees. Elements of special and international orders DO NOT qualify for a refund. < / span > < br / >
    < br / > < / p >
    < class p = "c7" > < img src = "images/ebay-top-rated-seller - tracking.jpg" width = "230" height = "158" alt = "" * Please DESCRIBE THIS IMAGE * "" / > < a href = "http://feedback.ebay.com/ws/eBayISAPI.dll?ViewFeedback2 & amp; userid = fjp800 & amp; ftab = Feedbac kAsSeller" > < br / >
    Check out our E - Bay feedback < /a > < /p >
    < class p = "c7" > < br / >
    ****************************************************************************************** ********************<br /></p>
    < table >
    < /tr >
    < /table >
    < table width = "1002" border = "0" align = "center" >
    < b >
    < td width = "996" >
    < class p = 'c3' > < strong class = "c2" > using Octenol to attract mosquitoes < br / > < / strong > < br / > < / p >
    < class p 'c3' = > Octenol is a natural chemical that occurs naturally as a by-product of the plants and animals that eat a lot of vegetables produce. If carbon dioxide is mixed with octenol, it turned to be an attractant for several species of mosquitoes. There are other insects like the fire of the ships and the fire ships which are also attracted to this perfume. It turned out to be a very effective product, especially for the fire ships. < br / >
    < br / >
    < img src = "images/12137165-cartoon - stop - mosquito.jpg" width = "168" height = "168" alt = "mosquito" / > < br / >
    < br / >
    Octenol is also a pesticide ingredient which is used to attract mosquitoes and flies that bite. He does not kill insects; It only attracts them. It can be used in combination with other products and devices that kill once they are successfully attracted the device. It is important to know that no pests are also lured and destroyed by some of the features. < br / >
    < br / >
    If octenol is ingested, there is a possibility of toxicity. However, it is not harmful in the air to humans, animals or the environment. It is extremely important that it is kept safely of children to avoid the risk of ingestion. Placement of repulsion and the device used to catch biting insects must be carefully considered. It should be kept safely away from children and pets. < br / > < / p >
    < class p 'c3' = > to be more effective in the fight against mosquitoes, the bait should be placed between the breeding grounds for the mosquito and the area where the people. There are limits of beach that reaches the attractant and this needs to be seen in the implementation of the trap also. < br / > < / p >
    < table >
    < /tr >
    < /table >
    "< a href ="http://www.startlogic.com/join/index.bml?AffID=626972 & amp; cid = 592 "" > < br / > < / has > = ""
    "< p > < img src ="images/americanatural_1875_97577.gif"width ="234"height ="118"alt =" * Please DESCRIBE THIS IMAGE * "/ > < / p >
    < p > contemplating the purchase of a trap? If so, compare the following pitfalls before making a purchase: < /p >
    "< a href ="http://www.bluerhino.com/BRWEB/Outdoor-Living-Products/Mosquito-Traps.aspx "> attractant < /a>"
    < table class = "c6" border = "0" align = "center" >
    < tbody >
    < b >
    < td align = "center" >
    "< div class ="c3"> < a href ="http://www.mosquitomagnet.com/ "> Mosquito magnet < /a > < / div >"
    < table >
    < /tr >
    < / tbody >
    < /table >
    < table class = "c6" border = "0" align = "center" >
    < tbody >
    < b >
    < td >
    "< div class ="c3"> < a href ="http://www.megacatch.com/ "> mega-taking < / has > < / div>"
    < table >
    < /tr >
    < / tbody >
    < /table >
    < table class = "c6" border = "0" align = "center" >
    < tbody >
    < b >
    < td >
    "< div class = 'c3' > < a href ="http://koolatrononline.stores.yahoo.net/mosquito-control.html "> Koolatron < / a > < / div>"
    < table >
    < /tr >
    < / tbody >
    < /table >
    < table class = "c6" border = "0" align = "center" >
    < tbody >
    < b >
    < td width = "273" >
    "< div class ="c3"> < a href ="http://www.mosquitocontroltrap.com/comparisons "> Mosquito comparison of trap < /a > < / div >"
    < table >
    < /tr >

    < / tbody >
    < /table >
    < p > < br / > < / p >
    < table width = "126" border = '20' align = "center" cellpadding = "0" >
    < b >
    "< class th ="c1"scope ="col"> < a href ="mailto:[email protected] "> email Urefillit < /a > < /th >"
    < /tr >
    < /table >
    < br / >
    < class p = 'c8' > < / p >
    < class p = 'c8' > < span class = 'c9' > Urefillit, LLC < br / >
    800 shore Drive East < br / >
    Oldsmar, Florida 34677-4402 </span > < / p >
    < class p = 'c8' > < / p >
    "< p > < a href ="http://validator.w3.org/check?uri=referer "" > < img src = "http://www.w3.org/Icons/valid-xhtml10" alt = "Valid XHTML 1.0" Transitional height = "31" width = "88" / > < /a > < br / > < / p >
    < p > < / p >
    < /th >
    < /tr >
    < /table >
    < script type = "text/javascript" >
    <! [CDATA]
    <!--
    swfobject.registerObject ("FlashID");
    ->
    []] >
    < /script >
    < / body >
    < / html >

    Why all the CDATA tags in your styles?  You don't need them there and they create problems.

    You have considered all this reconstruction without tables?  A large part of your code looks like it comes from MS Word which is not optimal for the web.

    The background image is + 1000px of wide and 374,01 KB (382 985 bytes).  For the fastest loading backgrounds, consider using Gradients in CSS or small, seamless tiles and repeating to fill the viewport.

    Honestly, I don't see anything here that couldn't be done better & much more effectively with a formatting table-less CSS. You want me to show you how?

    Nancy O.

  • Change the background color of the Flex SDK 3.5

    How to change the background color for each word in a text box?

    for example:

    Line 1 should be red font with the green background color.

    Line 2 is black by default


    Line 3 is a blue font with the green background color.
    Line 4 is black by default

    You will need to expand the text box and replace the update display list,

    try to draw a rectangle, coloured in this method.

  • How to change the background color of conditional region

    Hi gurus
    I have a region and you want to change the background color based on a value of element.
    How can I do?

    Thanks in advance
    Oscar

    Oscar,

    I didn't test the code. I modified the code to find all the tags and change the background color.

    1. In the HTML Region header create a div tag <div id ="REP_BGCOLOR_1"> and in HTML Region footer just close this div tag </div>
    2. Put the following javascript in the HTML header of the page.
    <script type="text/javascript">
    </script>
    
    3. Now call this GetDOMTag function to change the background color.GetDOMTag(document.getElementById('REP_BGCOLOR_1'));
    
    http://apex.oracle.com/pls/apex/f?p=50942:75
    
    Thanks,Manish 
    

Maybe you are looking for