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");
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");