stripped

How Do I Stop HTML From Being Stripped Out

I want a hover image on home page at https://maceducationcanada.com/ so have included the following HTML <div class="paytostudy"><a target="_blank" href="https://paytostudy.com"><img src="https://maceducationcanada.com/eric-content//uploads/2018/02/paytostudy-min.jpg" /></a></div> with CSS of .paytostudy { background-image: url(“uploads/2018/02/paytostudy-min.jpg”) no-repeat; display: inline-block; height: 140px; width: 513px; } .paytostudy:hover { background-image: url(“uploads/2018/02/paytostudy-hover-min.jpg”) no-repeat; } Unfortunately WP keeps stripping out the code. I have tried using and … Read more