Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
474 views
in Themes by

I add a button but a blank box appears and no image or text appears on the button

Q2A version: 1.8.3

1 Answer

+1 vote
by

You don't see the text because it is hidden away by moving it off the screen. The CSS to blame is this.

Regarding the background image, you need to explicitly add it to your button. For example, using this CSS (this one is from the flag button):

.qa-form-light-button-flag {
    background-image: url(images/icons/flag-white.png);
}

Just override those two attributes (and maybe the padding as well) in the button's CSS class to add some content to the button.

by
Add the button to CSS  but nothing changes
by
I'm trying to apply that code
https://www.question2answer.org/qa/4152
...