public override string[] GetCustomStyles(HtmlHelper html) { if (Content.UseCustomCss && !string.IsNullOrWhiteSpace(Content.CustomCss)) { var css = CssHelper.FixCss(Content.CustomCss); if (!string.IsNullOrWhiteSpace(css)) { return(new[] { css }); } } return(null); }