• Resolved mhreynolds

    (@mhreynolds)


    adding the following code to the custom stylesheet is not producing any visible results. is there something i’m missing here?

    .widget_sf_widget_constantcontact {
    border: 2px solid #808241;
    background-color: #ff8888 !important;
    color: #808241 !important;
    }

    also tried this:

    #sidebar .widget_sf_widget_constantcontact {
    border: 2px solid #808241;
    background-color: #ff8888 !important;
    color: #808241 !important;
    }

    site is https://tomasinmarshall.com

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author MembershipWorks

    (@sourcefound)

    Hi mhreynolds! It looks like you are using the shortcode not the widget. You will need to target the form itself:

    .constantcontactwidget_form{
    border: 2px solid #808241;
    background-color: #ff8888 !important;
    color: #808241 !important;
    }

    Thread Starter mhreynolds

    (@mhreynolds)

    actually, i am using the widget

    Plugin Author MembershipWorks

    (@sourcefound)

    Hi mhreynolds! In that case your theme is not providing a proper before_widget and after_widget setting when it called register_sidebar. Normally each widget should have its own div container with the classname as provided by widget, since the theme did not properly register the sidebar, there is no container with the class widget_sf_widget_constantcontact.

    Thread Starter mhreynolds

    (@mhreynolds)

    copy that… and thanks very much ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘unable to change style’ is closed to new replies.