• Resolved djsirny

    (@djsirny)


    Hi,
    Running into a little issue with the woocommerce color defaults on various buttons not changing to the selections that have been setup with the GP premium plugin color options. Is there an easy way to have the GP selection override all of those woo defaults? Wasn’t able to see anything in woo options either…. maybe I am missing something???

    All other items in the GP customization working great!

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Tom

    (@edge22)

    Hi there,

    WooCommerce targets their buttons specifically, where GP targets standard buttons.

    This means the WooCommerce styling overrides any default GP styling.

    You can use CSS to override the WooCommerce styling like this:

    .woocommerce #respond input#submit,
    .woocommerce a.button,
    .woocommerce button.button,
    .woocommerce input.button {
    	background-color: #666666;
    	border-radius: 0;
    	color: #FFF;
    	font-weight: normal;
    }
    
    .woocommerce #respond input#submit:hover,
    .woocommerce a.button:hover,
    .woocommerce button.button:hover,
    .woocommerce input.button:hover {
    	background-color: #3f3f3f;
    	color:#FFF;
    }

    Hope this helps ??

    Thread Starter djsirny

    (@djsirny)

    OK cool, thanks!

    Theme Author Tom

    (@edge22)

    You’re welcome! ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to have GP custimization overide woocommerce color defaults?’ is closed to new replies.