S
S
Sergey Yavin2020-08-19 16:59:33
css
Sergey Yavin, 2020-08-19 16:59:33

How to move a button for one term in Wordpress?

Made a contact form via wpforms and ran into a problem. I need all form elements to be in a string.
5f3d2e911e9c8717162057.png

On the screen, the button is created at the bottom, how can I move it to one line?
Here is the code:
5f3d30115f390218181133.png

Answer the question

In order to leave comments, you need to log in

2 answer(s)
X
xdevelx, 2020-08-19
@sjaserds

.wpforms-form {
  display: flex;
  flex-wrap: wrap;
}

E
Elvin_Fich, 2020-08-19
@Elvin_Fich

Through css, you can write one of the options in this tag button in the html file itself:

style="display: inline-flex"
style="display: inline-block"
style="display: inline"

Or set the class and do the same in the style.css file:
.tvoi_class {
/* что-то из этого */
display: inline-flex;
display: inline-bloc;
display: inline;
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question