Wordpress users can customize the info pane as per their design requirement and can set the fonts, height, background etc for the info pane by editing the file style.css of the theme and adding the necessary classes for customization, like for example the following classes are redefined and override the default CSS classes of Cincopa:
.slideInfoZone
{
background:#FF1122 !important;
height:50px !important;
}
.slideInfoZone h2
{
font-size:10px !important;
font-weight:normal !important;
color:#FFF !important;
}
Notes:
1. The above changes requires the intermediatory level of CSS knowledge
2. Using "!important" will only take this CSS class even though other classes are defined.
3. Make sure that the iframe option is opt-out (unchecked) or else the page's CSS will not have any effect.
Wordpress users can customize the info pane as per their design requirement and can set the fonts, height, background, etc. for the info pane by editing the file style.css of the theme and adding the necessary classes for customization.
For example, the following classes are redefined and override the default CSS classes of Cincopa:
.slideInfoZone{
background:#FF1122 !important;
height:50px !important;
}
.slideInfoZone h2{
font-size:10px !important;
font-weight:normal !important;
color:#FFF !important;
}
Notes:
- The above changes requires the intermediate CSS knowledge
- Using "!important" will only take this CSS class even though other classes are defined.
- Make sure that the iFrame option is opt-out (unchecked) or else the page's CSS will not have any effect.
0 Comments