-1

i have one little issue that cant resolve myself. I want to remove second box (at bottom) in this page but when inspect CSS found that both elements are defined as :

<pre></pre>

so dont know how to handle that box, and remove it. Form in that page are generated by "User registration & user profile – Profile Builder plugin".

enter image description here

DrMTR
  • 499
  • 1
  • 14
  • 35

2 Answers2

1

in your css:

:css selector { 
  display:none;
}

you also can declare in html:

<pre style="display:none;"> </pre>
  • Thanks for your answer. was usefull to identify from where is comming issue. I resolved. – DrMTR Jul 06 '17 at 16:11
1

Try this in your javascript file, or add it in <script></script> in your <head>.

document.getElementsByTagName('pre')[1].remove()

You also have jquery on the site without the traditional $ alias, so you can also do:

jquery('pre').eq(1).remove();
smilebomb
  • 5,123
  • 8
  • 49
  • 81