Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #1247008

    Hello there!
    So here’s what I’d need:
    I’d like the Toolpits to be transparent but the font should be white.
    I’ve tried this code:

    .avia-tooltip {
    background: rgba(255, 255, 255, 0);
    color: rgba(255, 255, 255, 0);
    }

    However, the result ist that a strange white arrow is showing up on the right side of the Hotspot permanently and no Text is visible at all. The arrow should be gone and the Text should be displayed in a white color.

    Could you please be so kind and help me out with the code? Also, how can I add a button on the picture as well? I’d need a transparent button with frame on it.

    Thank you in advance for your help

    #1247042

    Hey Katroaka,
    To change the hotspot tool tip to transparent with red text please try this css:

    #wrap_all #main .av-display-hotspot .av-permanent-tooltip-single,
    #wrap_all #main .avia-arrow {
        background-color: rgba(255, 255, 255, 0) !important;
    }
    #wrap_all #main .av-display-hotspot .inner_tooltip p {
    	color: red !important;
    }
    #wrap_all #main .avia-tooltip.av-tooltip-shadow, 
    #wrap_all #main .avia-tooltip.av-tooltip-shadow .avia-arrow {
        box-shadow: 0px 0px 10px 0px rgba(0,0,0,0) !important;
    }

    Expected results:
    2020-09-19_220200.jpg
    Please note that I used red text in this example so you could see the text in the screenshot, if your site or image is dark you can change the color to white, as in your request.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1247092

    Hello Mike thank you so much for your response. I’ve added the code to the Quick CSS section in the General Styling and it didn’t do anything. There is still a white box behind the text. Did I add the CSS to the correct section?

    #1247093

    Hi,
    Please link to your page so we can check, also an admin login would allow us to investigate further.
    I recommend disabling Enfold Theme Options > Performance > JS & CSS file merging and compression and any caching plugin to see if that helps.

    Best regards,
    Mike

    #1247095
    This reply has been marked as private.
    #1247135

    Hi,
    Thanks for the link, for the first two images with permanently opened hotspots, this css makes them transparent:

    #wrap_all #main .av-hotspot-container .avia-tt,
    #wrap_all #main .avia-arrow {
        background-color: rgba(255, 255, 255, 0) !important;
    }
    

    result:
    2020-09-20_084905.jpg
    For the third one I’m having trouble matching the settings on my localhost, as the container seems different from the first two.
    Please include an admin login in the Private Content area so I can investigate further.

    Best regards,
    Mike

    #1247151
    This reply has been marked as private.
    #1247154
    This reply has been marked as private.
    #1247176

    Hi,
    I’m unsure how you would want the outcome to look with the title, additional text block, and button on the image.
    Do you have a mockup that we can see?
    Would it have the same layout for mobile?
    So you would like the text of the hotspots to be centered, but what about the hotspots themselves, are they centered with the text, or do they stay to the left as they are?
    The hotspots can be dragged to any place on the image, so try to place the hotspots where you would like them.
    The hotspots are given an absolute location via javascript based on where they are dragged to.
    Perhaps the solution for your additional text block and button is to add another hotspot with your text or button and hide the hotspot so the text or button is just shown.
    I tested this button shortcode on my localhost in the hotspot text area and it works:

    [av_button label='Button' icon_select='no' icon='ue800' font='entypo-fontello' link='manually,http://' link_target='' size='medium' position='center' label_display='' title_attr='' color_options='' color='light' custom_bg='#444444' custom_font='#ffffff' btn_color_bg='theme-color' btn_custom_bg='#444444' btn_color_bg_hover='theme-color-highlight' btn_custom_bg_hover='#444444' btn_color_font='theme-color' btn_custom_font='#ffffff' id='' custom_class='' av_uid='av-kfbatcr8' admin_preview_bg='']

    2020-09-20_122718.jpg
    Thanks for the login, but I was not able to load the login page, perhaps it is not the standard /wp-admin/?

    Best regards,
    Mike

    #1247191
    This reply has been marked as private.
    #1247203

    Hi,
    I skipped to your last request of making the check marks pulsating, and added this css to your quick css:

    #top.home .avia-builder-el-41 h3.av-special-heading-tag:before {
    	content:"";
    	display: block;
        background: #fff;
        border-radius: 100px;
        height: 40px;
        width: 40px;
        position: absolute;
        -webkit-animation: av_pulsate 2s ease-out infinite;
        animation: av_pulsate 2s linear infinite;
        opacity: 0;
        top: -11px;
        left: -11px;
        z-index: 1;
    }

    Please clear your browser cache and check, if you like it we can make it more permanent with a custom class.

    Best regards,
    Mike

    #1247329
    This reply has been marked as private.
    #1247574
    This reply has been marked as private.
    #1247602

    Hi,
    Glad to hear that the css helped, to make it more permanent with a custom class, I added the class special-pulsate to each special heading with a check mark on your homepage, like this:
    2020-09-22_062602.jpg
    then I changed the css at Enfold Theme Options > General Styling > Quick CSS field to this:

    .special-pulsate:before {
    	content:"";
    	display: block;
        background: #fff;
        border-radius: 100px;
        height: 40px;
        width: 40px;
        position: absolute;
        -webkit-animation: av_pulsate 2s ease-out infinite;
        animation: av_pulsate 2s linear infinite;
        opacity: 0;
        top: -11px;
        left: -11px;
        z-index: 1;
    }

    Please clear your browser cache and check.
    When I check your “Podcast” menu link, it seems to work for me, I tried going each page in your menu and then clicked the “Podcast” menu item and it loaded correctly. Please check again.

    Best regards,
    Mike

Viewing 14 posts - 1 through 14 (of 14 total)
  • You must be logged in to reply to this topic.