Wordpress Plugin CSS help

tonyb70

Member
Aug 29, 2020
37
15
8
Hi,

I hope I am posting this in the correct section.

I am using Super Forms WP plugin and need a little bit of help with some custom CSS which can be added in the form settings.

In the form I have created I have a group of fields that can be repeated when you click a + button. At the moment I have a heading below the button that tells the user to click the button to add more.

What I would like is add some text inline next to the + to say something like 'ADD MORE' instead of having the text below.

I wonder if someone can help me do this.

2020-09-06.png

Thanks.
 

videva

Member
Aug 25, 2020
75
53
18
@tonyb70 using css like this ?
CSS:
/*replace .RepeatingSection with your div class name*/
.RepeatingSection::before {
  content: "ADD MORE";
}

/*
example structure html
<div class="RepeatingSection">
  <a href="#" class="buttonGray buttonRight"><img style="width: 20px;" src="plus-flat.png"></a>
</div>
*/

1.png

besides using css, you can also use js.
 
Last edited:
  • Like
Reactions: tonyb70

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu