Archived topic
Creating Info Box for CTA
1 reply · Started by Mijail on February 2, 2022
I would like to add a few info box to my home page and have it be a regular part of a high light of a blog post or fun fact.
I know you don't support support for this so bear with me. I am trying to accomplish this via a 3rd party plugin called infobox - I was able to format it to exactly what I wanted but when I went to publish, it only shows up as the html and not the cool css box styling. its got a border, background and a drop shadow with rounded corners.
Is there any standard trouble shooting I can do for these types of plugins. I've uninstalled and reinstalled plugin.
Is there a way I can accomplish this info box requirment without this plug in?
Hi Mijail,
I tried this plugin in my test website, and it indeed does not work when added as an Element.
Take note that our products are built adhering to the WordPress Codex Standards. This means that other products that adhere to the Codex should work properly with ours.
With this said, kindly contact the Customer Support of this plugin, and see if they may assist you regarding this issue.
With regards to building an info box similar to the one created through this plugin, yes, this is definitely doable.
See this for reference: https://share.getcloudapp.com/WnuqZ6Lw
The box shadow effect is available through GenerateBlocks Pro. You can also add this through custom CSS. Here is something you can try:
.add-box-shadow {
box-shadow: 10px 5px 5px red;
}
Simply add a add-box-shadow CSS class to the parent container: https://share.getcloudapp.com/d5uNyJLK
Here is a link you may refer to with regards to box-shadows: https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow
Hope this helps! :)