• Hi I am using Page Builder plugin’s homepage function. In that , I can change the color of a row from visual style, but there are only two option : none and gray. Can i add another colour? Please help me, im using Siteorigin’s Vantage theme.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Jose C

    (@jcervantes28)

    ditto

    It requires a bit of coding knowledge but if you’re using a theme from SiteOrigin you can add Visual Styles in the wp-content/themes/(YOURTHEME)/inc/panels.php file. Find the siteorigin_panels_row_styles filter and just add your style to the function associated with it e.g.

    function vantage_panels_row_styles($styles) {
    	$styles['wide-grey'] = __('Wide Grey', 'vantage');
    	$styles['YOUR-STYLE-TITLE'] = __('VISUAL STYLE TITLE', 'vantage');
    	return $styles;
    }

    The documentation is here https://siteorigin.com/page-builder/theme-integration/

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Page builder Plugin : How to add nother color to row in visual style’ is closed to new replies.