Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 421 Bytes

how-to-put-own-css.md

File metadata and controls

21 lines (17 loc) · 421 Bytes

How To Put Your Own CSS Stylesheet

Open the module controller. Find $this->style_css in cbInit() method.

$this->style_css = "
  .some_class {
     color: yellow;
  }
";

or you can embed your own css url

$this->load_css[] = asset("your_own_css_file.css");

What's Next

Table Of Contents