How do I remove this Paypal box above the button

Hi there,
Please add this code in the Global CSS:
div#custom_html-2 h4 {
display: none;
}
Here are some reference links related to the suggestions above:
- CSS Introduction - https://www.w3schools.com/css/css_intro.asp
- How to get CSS Selectors using Chrome - https://stackoverflow.com/questions/4500572/how-can-i-get-the-css-selector-in-chrome
- CSS Display - https://www.w3schools.com/cssref/pr_class_display.asp
Hope this helps.
That worked great thanks
You’re welcome.
Hi, I had to remove the Paypal button and create a new one and now the css you provided me doesn’t work, it took me a while to figure out how to remove it for the rest of the other pages but now I have no idea.
Thanks in advanced
Hi there,
The solution I have previously suggested is specific to the Paypal widget title of the previous page.
Here some things you can try:
Try leaving the widget title in WP Admin > Widgets blank.
Using the plugin Widget CSS Classes you will be able to add a class title to the widget in the admin area. Add a common class to the widgets that you want the title not to be displayed then add this code to the Global CSS:
.hide-title .h-widget {
display: none;
}
The code above assumes that the class you will add to the widget you want to be hidden is hide-title.
So in case you have placed a widget title to the widget in the admin section and you don’t want it visible on the site, simply add the class hide-title to those widgets.
Hope this helps.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.