Knowledgebase

Can I change the styling?

You can update the styling of the policy on your site. There is nothing fancy going on, it uses standard HTML elements/tags like P, H2, H3

The policy has a unique <div> with an ID of policy for styling, so you are able to adjust how your privacy policy looks by targeting this element in your stylesheet. Since this selector targets the privacy policy content, it will not change any of the other styles on your website. Below is an example of how to customize your policy’s appearance:

 

/* Any policy paragraph */

 

#policy p {

  font-family: Arial, Helvetica, sans-serif;

  font-size: 12px;

}

 

/* Any policy table */

 

#policy table {

  border: 1px solid black;

  vertical-align: bottom;

}

 

/* Any policy h2 */

 

#policy h2 {

  background-color: black;

  color: white;

  font-weight: bold;

}

 

/* Any policy h3 */

 

#policy h3 {

  font-family: “Andale Mono”, monospace;

  font-size: 20px;

}

Was this answer helpful?

0 Users Found This Useful