Dyad 2 theme – remove blue circle

  • Unknown's avatar

    I’d like to remove the blue circle (with white lines in it) from all pages, how can I do this please?

    Thanks

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi, quiltyguides,
    It appears that the image you are referring to is part of the theme and cannot be removed unless you have upgraded to a plan that includes custom css. If you have upgraded, hopefully, a more sophisticated coder can add something here to help you out.
    If you are on a plan that does not offer customizable css, it looks like you may just have to switch to another theme that appeals to you in a more favorable way.
    I hope this helps. Cheers!

  • Unknown's avatar

    I have custom CSS so I’m after some code to take it out. Thanks anyway!

  • Unknown's avatar

    Hi there, this will get rid of the circle and the icon, but leave the line.

    .is-singular .entry-inner::before, .error404 .entry-inner::before, .page-template-eventbrite-index .page-header::before, .single-event .entry-header::before {
      display: none;
    }
    .is-singular .entry-inner::after {
      display: none;
    }

    If you want the line gone as well, add the following in addition to the above.

    .is-singular .entry-content::before, .error404 .entry-content::before {
      border: none !important;
    }
  • Unknown's avatar

    Great thanks so much! How can I reduce the white space now where it was?

  • By default there is 4em of space above the content on singular posts. You can remove that space with this custom CSS:

    .is-singular.has-post-thumbnail:not(.home):not(.single-format-image):not(.page-template-eventbrite-index) .entry-content {
        padding-top: 0;
    }
  • The topic ‘Dyad 2 theme – remove blue circle’ is closed to new replies.