• Resolved bruce7075

    (@bruce7075)


    Hello,

    Please kindly advise how to add text to the right/left handside of the button. Thanks!

    Bruce

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

    (@markoarula)

    Hello,

    have you tried to add display: inline-block; on toggle button.

    Something like this:

    .wpnm-button.style-4 {
       display: inline-block;
    }
    Thread Starter bruce7075

    (@bruce7075)

    Hello,

    I use widget to add the button to the sidebar. Also, I add the shortcode right after the text. But the button simply goes to next line, not inline with text.

    Is there any way to make it for widget area? Thanks!

    Bruce

    Plugin Author markoarula

    (@markoarula)

    Hi,

    yes you can do that, you just need to add display: inline-block; on button as I described on previous reply.

    If you want this to work only on widget area you will need to add class to target only widget, for example:

    .widget .wpnm-button.style-4 {
       display: inline-block;
    }

    Replace .widget class with your own.

    Best regards

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to add text at right/left handside of the button’ is closed to new replies.