FixMe.IT allows you to easily customize the client application to match the design of your website. Here’s how you can center the Client ID Box on a webpage with the help of HTML and CSS.
- Go to My Account > Configure Page Template.
- Copy and paste the following code into the Page Template Window:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | <html> <head> <style> .box-container { width: 100%; } .box-center { display: table; margin: 0 auto; } .box-center h1 { text-align: center; } </style> <title>Your Brand Name</title> </head> <body> <div class="box-container"> <div class="box-center"> <h1 class="header1">Your Brand Name</h1> <#CLIENT_BOX#> </div> </div> </body> </html> |
Enter any other applicable HTML code or CSS styles, and click Save Changes.
For more information on how to change the appearance of the FixMe.IT Client Application, see our customization guide or refer to online documentation on our website.