Home Forums WoodMart support forum WPBakery popup icons bug

WPBakery popup icons bug

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #468645

    justas404
    Participant

    Hello, I have created a popup with html blocks. I’ve divided column into two 1/2 rows, since I want two clickable icons on the top (01 image). Icons should enlarge on hover (with transform: scale property). Adding custom css to icons affects whole container instead of just icons. Disabling unnecessary plugins changes nothing. I’ve added custom debug css to these icons, so I could see the affected area visually. border: solid 3px green; for the left call icon and border: solid 3px red;for the right mail icon. On desktop whole container is affected (02 image) and on mobile the same, execpt right one does not scale down (03 image). Solved first button being unclickable on mobile by adding z-index value (04 image with fix applied). Tried WPBakery buttons, Woodmart buttons, but the results from these are dissatisfying. How can I nicely scale icons on hover without affecting whole container?

    Attachments:
    You must be logged in to view attached files.
    #468886

    Hello,

    Can you please share the WP admin login details and the custom HTML block URL which you have created so I will check and give you the possible solution,.

    Best Regards.

    #468997

    justas404
    Participant

    I have provide details in private section.

    #469887

    justas404
    Participant

    I want to ask if there’s any updates to this problem?

    #470064

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    .custom-social-btn > div {
    	transition: transform .3s;
    }
    
    .custom-social-btn > div:hover {
    	transform: scale(1.1);
    }

    Best Regards

    #470577

    justas404
    Participant

    It works really well, thank you!

    #470634

    You are welcome! We are here to help.

    Wish you a wonderful day!

Viewing 7 posts - 1 through 7 (of 7 total)

The topic ‘WPBakery popup icons bug’ is closed to new replies.