Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Brandon Kraft

    (@kraftbj)

    Code Wrangler

    Hi,

    This is 100% within your theme (the plugin doesn’t produce it). If you post a link to a page with the widget installed, I can direct you on what CSS to change to remove it.

    Cheers!

    Thread Starter ariherzog

    (@ariherzog)

    I just inspected the element myself and see the location of the enews-ribbon.png image. As it is widget-dependent, if I have the widget twice on the site but for different forms, can I choose to have the ribbon show on one and not the other? Is that conditional PHP logic, or is it all or none?

    Plugin Author Brandon Kraft

    (@kraftbj)

    Code Wrangler

    With a link, I could give you better support. Flying a little blind without it.

    You can use more refined CSS rule. Each instance of a widget has its own id (e.g. enews-4, enews-2, etc.) Depending on what behavior you want default… Let’s assume showing the banner and assuming it is being displayed via a background rule… You could have a #enews-2 .enews { background: none; } to remove it.

    Without seeing your site, it may be that simple or could be a little different if other background rules are in play.

    Thread Starter ariherzog

    (@ariherzog)

    Oh, sorry. Link: http://ariherzog.com.

    Plugin Author Brandon Kraft

    (@kraftbj)

    Code Wrangler

    Cool.

    Yeah—it’s a simple one to fix.

    The one in your sidebar is #enews-ext-2. The after-post one is #enews-ext-3.

    For whichever one you DO NOT want the sign-up banner add to your theme’s style.css:

    #enews-ext-2 .enews {
    background: none;
    }

    or

    #enews-ext-3 .enews {
    background: none;
    }

    All other formatting would remain the same; just the banner image will be removed.

    If you delete the widget and add another, the ID number will (likely) change. When you inspect the element, just check up a couple of levels (e.g. <div id="enews-ext-3"><div class="widget-wrap><div class="enews">)

    Hope that helps!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to remove the top left Sign Up image’ is closed to new replies.