• Resolved lordgareth

    (@lordgareth)


    Hello
    I have a few problems with plugin in Author theme:

    1. I can not center the button. I can move it for exemple “left: 110”, but “align-text: center” do not work.

    2. When I change layout to black, avatar photo (upper left corner) change scale.

    3. All buttons start to have black backgrounds around icons and texts.

    Is there a solution or this theme is incompatibile with your plug-in?

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author markoarula

    (@markoarula)

    Hello,

    here are quick fixes for you issues.
    Just add this CSS to your theme:

    1. To center the button

    .wpnm-button.style-1 {
      display: inline-block;
      margin-bottom: 10px;
    }

    2. Avatar photo fix

    body.wp-night-mode-on .site-avatar {
      background-color: transparent;
      background-position: 50%;
      background-repeat: no-repeat;
      background-size: cover;
    }

    3. Buttons fix, let me know if this won’t affect all buttons that you want:

    body.wp-night-mode-on .ow-icon-placement-top *,
    body.wp-night-mode-on .simple-social-icons * {
      background: transparent;
    }
    Thread Starter lordgareth

    (@lordgareth)

    Thank You for your help, all solutions works, the only glitch is in footer where part of the sentence (…Author WordPress Theme…) is in different color and has a different background.

    Additional question, is there possibility to automatically change mode if browser is in dark or light mode. I know that people do that with CSS with:

    @media (prefers-color-scheme: dark) { … }

    But I do not know what sentence could trigger the change.

    Plugin Author markoarula

    (@markoarula)

    Sorry for late reply, here is a quick CSS fix for text in the footer:

    body.wp-night-mode-on div.design-credit a {
      background: #1e1e1e;
      color: #ffffff !important;
    }

    For now, there is no automatic change mode if the browser is in dark or light mode, but it will be enabled in the near future.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Graphic „glitches” and button position problems’ is closed to new replies.