auto_stories Knowledge Base chevron_right Guides chevron_right Article

Custom Css And JS

Css and Js changes can be made in places where changes are desired on Xpoda Client. The name of the attached file is not important, it is sufficient that the file name ends with ".css" and ".js".

The desired css files are added under this folder.

  • Xpoda Client\Content\custom

The desired js files are added under this folder.

  • Xpoda Client\Scripts\custom

 

For example, when we wanted to change the purple background at the top, it was necessary to make changes in Xpoda Client\Content\_v2\login.css

Resim2.png

 

 

We can change the purple background color to red by creating a notepad called custom.css in Xpoda Client\Content\custom and adding the following codes.

    .page-account header {

        background-color: #cb0000;

Resim3.png

 

Resim4.png