HTML and CSS Resources for Emails

A list of resources to help you add CSS or customize HTML in your emails.

If you are comfortable with cascading style sheets (CSS), these resources may be helpful for you. Please note this does not tell you how to add CSS but gives you a better idea of how to incorporate Eloqua specifics into your knowledge.

From Oracle:

From others:

Please note these are from consultants and are not official Oracle documentation. Please use with caution.

Extra sample CSS:

Code to style the "Submit" button on a form:

.elq-form .submit-button-style {
    background: #b70101;
    color:#ffffff;
    font-size: 18px!important;
    line-height:18px;
        height:45px!important;
    border:1px solid #b70101;
    padding:5px 20px 5px 20px;
    margin:30px 0px!important;
}

Code to change Form "Instructions" text formatting:

.elq-form .form-element-instruction{
    font-weight: normal;
    font-style: italic;
    color: #c5050c;
}