Customize the Style of the Page with CSS
- Click the Account Folder
- Click Account Preferences
- Find the Other Information section at the bottom of the page
- Click Edit Company CSS
- In the CSS Editor window, type the CSS you would like to apply to the profile center page. Only add styles that you want to change from the default style.
-
Here are the default CSS values which you can change:
/*Padding and background color of page*/
#ci_procenter_background{
background-color: #E7E7E7; /* Gray */
padding: 20px 42px;
}
/*Styling of boxes where data is entered (ie: First name, Last Name, etc.)*/
.ci_procenter_text_box{
background-color: #FFFFFF;
border: 1px solid #CCCCCC;
font-size: 1.2em;
margin: 0px 0px 12px 0px;
padding: 6px;
width: 406px; /*256px;*/
border-radius:4px;
height: 18px; /*IE compatibility mode fix*/
}
/*When typing in box, the border is darker. Does not work in IE*/
.ci_procenter_text_box:focus{
border: 1px solid #999999 !important;
}
/*Styling of labels for the boxes where data is entered (ie: First name, Last Name, etc.)*/
.ci_procenter_form_label{
font-family: Arial, Helvetica, sans-serif;
font-weight:bold;
font-size: 12px;
}
/*Header text styles*/
.ci_procenter_header{
font-family: Arial, Helvetica, sans-serif;
color: #3685c3;
font-size: 16px;
padding: 12px 0px 9px 0px;
}
/*Button styling*/
.ci_procenter_update_btn {
margin-top:12px;
padding:0px 12px;
border:1px transparent;
border-radius:4px;
height:28px;
line-height:24px;
font-size:12px;
display:inline-block;
text-decoration:none;
color:#FFF;
/*Gradiant */
background-color: #666666;
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#999999), to(#666666));
background-image: -webkit-linear-gradient(top, #999999, #666666);
background-image: -moz-linear-gradient(top, #999999, #666666);
background-image: -ms-linear-gradient(top, #999999, #666666);
background-image: -o-linear-gradient(top, #999999, #666666);
}
.ci_procenter_update_btn:hover{
/*Flip gradiant*/
background-color: #666666;
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#666666), to(#999999));
background-image: -webkit-linear-gradient(top, #666666, #999999);
background-image: -moz-linear-gradient(top, #666666, #999999);
background-image: -ms-linear-gradient(top, #666666, #999999);
background-image: -o-linear-gradient(top, #666666, #999999);
}
.ci_procenter_update_btn:active{
background-color: #777777;
background-image: none;
}
/*Divider Line Styling*/
.ci_procenter_end_line {
border-bottom: #B7B7B7 1px solid;
margin: 9px 0px 12px 0px;
}
/*Available Publications Checkboxes*/
.ci_procenter_checkbox{
padding-bottom:6px;
}
.ci_procenter_checkbox_text{
margin-left:26px;
padding-top:3px;
}
/*Hide HTML email preferences to select plain text or html messages*/
#ci_procenter_preferences,#ci_procenter_preferences_subtext, #ci_procenter_email_pref_line {display:none;}
Comments
0 comments
Please sign in to leave a comment.