MediaPlanHQ enables you to change your colors and logo with your company logo and colors. These modifications are pretty easy to make.
Now, before you start, make sure you have a version of your logo optimized for a height of approximately 50 pixels. Otherwise, the header will take more screen estate and look disproportionate.
For the colors, MediaPlanHQ uses CSS styles. The following CSS snippet shows the properties to change the colors of the main areas of your account. Note that you can use a color tool to select your color codes such as http://www.colorschemer.com/online.html.
/* Page */
html {
background-color: green;
}
/* Header */
#mediaplanhq #hd {
background-color: green;
border-bottom-color: orange; /* Color of the delimiter line below the header */
}
/* Module Tabs */
#mediaplanhq #modules {
background-color: orange;
}
/* Module Tab Link */
#mediaplanhq #modules li a {
color: yellow;
}
/* Module Tab On Mouse-Over */
#mediaplanhq #modules li:hover {
background-color: lightgreen;
}
/* Module Tab Link On Mouse-Over */
#mediaplanhq #modules li:hover a {
color: blue;
}
/* Module Tab When Active */
#mediaplanhq #modules li.active {
background-color: red;
}
/* Module Tab Link When Active */
#mediaplanhq #modules li.active a {
color: #ffffff;
}
/* Form */
#mediaplanhq fieldset {
border-color: #7DA3D2;
}
/* Form Buttons */
#mediaplanhq .buttons {
background-color: #DDE7F3;
border-top-color: #A6C0DE; /* Color of the delimiter line above the buttons */
}
/* Footer */
#mediaplanhq #ft{
background-color: green;
border-top-color: orange; /* Color of the delimiter line above the footer */
}
Changing logo & colors
- Log in as an Account Administrator
- Go to Administration > My account
- Click the browse button in the Logo field.
- Select your logo file.
- Copy & Paste the above CSS snippet in the Styles field.
- Change the CSS properties with your colors.
- Click on the Save button.
Note that you do not need to re-select your logo file once uploaded unless you want to change it again.
Comments
0 comments
Article is closed for comments.