Viewing 30 results - 181 through 210 (of 142,595 total)
  • Author
    Search Results
  • #1492153

    Hey collinsfgc2025,

    Thank you for the inquiry.

    You have to look for the View icon in the top right corner of the editor. Please check the screenshot below:

    Screenshot-2025-12-05-at-1-57-40-PM

    Let us know if you have more questions.

    Best regards,
    Ismael

    #1492144

    In reply to: Icon Title on Hover

    Are you using this solution?
    https://kriesi.at/support/topic/image-title-on-hover/#post-1490549

    because there the selector is for all elements with title attribute ( *[title] ) – so this will include icons

    #1492143

    Topic: Icon Title on Hover

    in forum Enfold
    sjahan
    Participant

    Hi, you helped me remove the image title on hover, but I also need to remove it from the icons. Can you help with that?

    Sample: https://imgur.com/a/PyEH0Ph
    Original ticket: https://kriesi.at/support/topic/image-title-on-hover/

    Hey ti2media,
    Try adding this snippet to your child theme functions.php:

    function add_sticky_info_box() {
        ?>
        <style>
            .sticky-info-box {
                position: fixed;
                bottom: 120px;
                right: 20px;
                width: 300px;
                height: 300px;
                background: #ffffff;
                border: 1px solid #ddd;
                border-radius: 8px;
                box-shadow: 0 4px 12px rgba(0,0,0,0.15);
                z-index: 9999;
                display: flex;
                flex-direction: column;
                padding: 20px;
                box-sizing: border-box;
                transition: opacity 0.3s ease;
            }
            
            .sticky-info-box.hidden {
                display: none;
            }
            
            .sticky-info-box-header {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                margin-bottom: 15px;
            }
            
            .sticky-info-box-title {
                font-size: 20px;
                font-weight: bold;
                color: #333;
                margin: 0;
                flex: 1;
            }
            
            .sticky-info-box-close {
                background: none;
                border: none;
                font-size: 24px;
                color: #999;
                cursor: pointer;
                padding: 0;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: color 0.2s ease;
            }
            
            .sticky-info-box-close:hover {
                color: #333;
            }
            
            .sticky-info-box-message {
                flex: 1;
                color: #666;
                font-size: 14px;
                line-height: 1.6;
                margin-bottom: 20px;
                overflow-y: auto;
            }
            
            .sticky-info-box-button {
                background: #0073aa;
                color: white;
                border: none;
                padding: 12px 24px;
                border-radius: 4px;
                font-size: 16px;
                cursor: pointer;
                text-decoration: none;
                display: inline-block;
                text-align: center;
                transition: background 0.2s ease;
            }
            
            .sticky-info-box-button:hover {
                background: #005a87;
            }
            
            .sticky-info-toggle {
                position: fixed;
                bottom: 120px;
                right: 50px;
                width: 50px;
                height: 50px;
                background: #0073aa;
                color: white;
                border: none;
                border-radius: 50%;
                font-size: 24px;
                cursor: pointer;
                box-shadow: 0 4px 12px rgba(0,0,0,0.15);
                z-index: 9998;
                display: none;
                align-items: center;
                justify-content: center;
                transition: background 0.2s ease;
            }
            
            .sticky-info-toggle:hover {
                background: #005a87;
            }
            
            .sticky-info-toggle.visible {
                display: flex;
            }
        </style>
        
        <div class="sticky-info-box" id="stickyInfoBox">
            <div class="sticky-info-box-header">
                <h3 class="sticky-info-box-title">Important Information</h3>
                <button class="sticky-info-box-close" id="closeInfoBox" aria-label="Close">×</button>
            </div>
            <div class="sticky-info-box-message">
                <p>This is your information box! You can customize this message to display any content you'd like to share with your visitors.</p>
            </div>
            <a href="/your-page-url" class="sticky-info-box-button">Learn More</a>
        </div>
        
        <button class="sticky-info-toggle" id="infoToggle" aria-label="Show information">ℹ</button>
        
        <script>
            (function() {
                var infoBox = document.getElementById('stickyInfoBox');
                var closeBtn = document.getElementById('closeInfoBox');
                var toggleBtn = document.getElementById('infoToggle');
                
                // Close the info box
                closeBtn.addEventListener('click', function() {
                    infoBox.classList.add('hidden');
                    toggleBtn.classList.add('visible');
                });
                
                // Show the info box again
                toggleBtn.addEventListener('click', function() {
                    infoBox.classList.remove('hidden');
                    toggleBtn.classList.remove('visible');
                });
            })();
        </script>
        <?php
    }
    add_action('wp_footer', 'add_sticky_info_box');
    

    Then adjust the title, message, buttone text & link to suit. You can also adjust the CSS to change colors, etc.
    It places the box & info button 120px from the bottom so they are above the scroll-top button, ratio than have them move if the scroll-top shows, which would not be so good.
    fIPHs99.md.png
    fIPJ6iv.md.png

    Best regards,
    Mike

    #1492133

    have a look if you have already the svg usage of those standard icons. – the up-open icon is already a bold one – but you can make it bigger:

    #scroll-top-link svg {
      margin-top: 3px !important;
      width: 40px !important;
      height: 40px !important;
    }
    
    #scroll-top-link svg path {
      stroke-width: 2;
      stroke: currentColor
    }

    see :

    btw: on mobile ( better on smaller screens it is set to display: none )

    
    @media only screen and (max-width: 767px) {
      .responsive #scroll-top-link {
        display: block;
      }
    }

    The reason for this is that many people know that double-tapping the top of the screen scrolls the window upwards.

    ti2media
    Participant

    Dear Support.

    Can you recommend a solution or PlugIn to create a feature similar to this website: https://immosell.ch/
    Also once the box is closed there is an information Icon that can bring the box back. Also on my page I am using your scroll to the top icon which I would like to keep under the box if the box is showing and next to the Information icon once the box is closed.

    Thanks for advise.

    Regards
    Stefan

    #1492123
    ti2media
    Participant

    Dear Support.

    I duplicated a color section and used one version for laptop and one for mobile. It works really well. The only problem is that the ID for each section is the same. There is one ID used in two color sections, otherwise I would not know how to adress the section in the menue.

    The result is that the link works on desktop but not on mobile. Is there a solution for this?

    Regards
    Stefan

    #1492122
    collinsfgc2025
    Participant

    Hi,

    When I last used Enfold, there was a “Preview” button that would show you the page after you’d made changes in the editor. Now, I can only find an arrow at the top that will open the page, but unless I save the changes, they don’t appear there. I need a way to preview changes before making them permanent with a Save. Suggestions?

    Also, next to the Copyright statement, I’d like to remove the text: powered by Enfold WordPress Theme. How can I do that?

    Thanks.

    #1492104
    #1492097

    In reply to: Arabic font Change

    Hi,

    Thank you for the link.

    Add this code in the functions.php file to load the Cairo font:

    function av_load_google_fonts() {
        wp_enqueue_style(
            'google-fonts-cairo',
            'https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap',
            array(),
            null
        );
    }
    add_action('wp_enqueue_scripts', 'av_load_google_fonts');

    After that, add the following css to make the font the default body text:

    #top, body, p, span, li, a, h1, h2, h3, h4, h5, h6, input, textarea, button {
        font-family: 'Cairo', sans-serif;
    }

    Let us know the result.

    Best regards,
    Ismael

    #1492094

    Hey ti2media,

    Thank you for the inquiry.

    The color of the email field is different due to this css code:

    #top .kontaktformular input[type='text'] {
        background-color: #ffffff !important;
        border: none !important;
        color: #0d3c63 !important;
    }

    To correct it, please replace it with the following css:

    #top .kontaktformular input[type='text'], #top .kontaktformular input[type='email'] {
        background-color: #ffffff !important;
        border: none !important;
        color: #0d3c63 !important;
    }

    Then add this css code to adjust the width of the form fields:

    #top fieldset {
        margin-bottom: 20px;
        overflow: hidden;
    }

    Best regards,
    Ismael

    #1492078
    #1492072
    condonp
    Participant

    Dear Sirs,
    I have disabled the arrows on the navigation of the lightbox using the suggested css but I notice when I click on the image it still scrolls across. Is there any way we can stop this so we disable the scroll when someone clicks on the image please.

    Many thanks

    Peter

    #1492067

    Hey ti2media,

    Please try this CSS as well:

    #scroll-top-link.avia-svg-icon svg:first-child {
      margin-top: 7px;
    }

    Best regards,
    Rikard

    #1492060
    ti2media
    Participant

    Dear Support.

    I tried to customise the menue based on threads in this forum. Almost there but some stuff is broken / does not work as described.
    If you go to the start page using a laptop, the menu items should be blue, on hover = white and active=white.

    For some reason reason “über mich” is white, but it’s not active. Home and the chosen language should be active (white) but they are not.
    Also I tried to format the height of the space the elements are in as well as giving “Kontakt” a different background color.
    I used this, but deactivated it for now – since the page is live.

    #menu-item-167 {
    background-color:#8b8c89;
    }.

    The Problems are:
    1. If you are visiting the start page with a laptop it’s ok at first.
    2. If you scroll down the header shrinks and has on purpose a different background color, but the button background should also change to white and the link to the #8b8c89.
    3. Also once you scroll there is no active color which should be the corporate blue.
    4. The height of the items is only ok once you scroll. Before that it’s too high – see screenshots.

    Thanks for help.

    #1492058
    ti2media
    Participant

    Dear Support,

    I tried to change the “Scroll to the Top” Element using some threads in this Forum. I wanted to achieve that the arrow inside the box is more bold and that the element itself is a little bigger. Doing that the arrow is not centered anymore. Also the element for some reason gets cut when scrolling on an iPhone. It’s only visible on mobile once you scroll up. It should always be visible. Please advise.

    • This topic was modified 1 month, 2 weeks ago by ti2media.
    #1492043

    Hey jimmiemoreland,

    Thank you for the inquiry.

    You can add this css code to make the header sticky on mobile. Make sure to adjust the top padding based on the header’s height.

    @media only screen and (max-width: 989px) {
    
      /* Add your Mobile Styles here */
      .responsive.html_mobile_menu_tablet #top #wrap_all #header {
        position: fixed;
      }
    
      .responsive.html_header_top #top #main {
        padding-top: 120px !important;
        margin: 0;
      }
    }

    Let us know the result.

    Best regards,
    Ismael

    #1492042

    Hi,

    Thank you for the update.

    Try to add this css code to show the full image:

    #top .fullsize .template-blog .big-preview img {
        min-width: 300px;
        background-size: contain;
    }

    Screenshot-2025-12-03-at-2-21-01-PM

    Best regards,
    Ismael

    #1492040
    jimmiemoreland
    Participant

    Hello, Id like the Sticky Header on MOBILE as I want my Phone number always displayed at the top when a user scrolls. I found the code below, but it doesnt do anything.

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all .main_menu {
    position: relative;
    width: 100%;
    }
    }

    #1492036

    In reply to: RTL Header

    I need the same to happen on disktop

    #1492030

    In reply to: Before/After part

    try:

    .responsive #top #section-container-width .container {
      width: 100% !important;
      max-width: 100% !important;
      padding: 0;
    }
    
    .responsive #top #section-container-width .avia-image-diff-container {
      margin: 0 !important;
    }
    
    .responsive #top #section-container-width .av-image-diff-wrapper,
    .responsive #top #section-container-width .av-image-diff-wrapper img {
      width: 100%;
      max-width: 100% !important;
      margin: 0
    }

    your images are 1024px width – so you had to stretch them to the container width.

    #1492028

    In reply to: RTL Header

    Rikard,

    The menu on mobile view change automatically to be logo on the right and language switcher on the left. But on disk top logo on Arabic language stays on the lift and language switcher on the right. It should automatically to Logo on the right and language switcher on the left.

    I didnt find any place in the theme settings to change this.

    please support.

    Thanks.

    #1492027

    In reply to: Before/After part

    Hi Rikard,

    Its working on mobile but not on disktop

    #1492022

    Hey Eleina,

    Thank you for the inquiry.

    Please add this code in the Quick CSS field to adjust the layout of the top bar on mobile view:

    @media only screen and (max-width: 768px) {
    
      /* Add your Mobile Styles here */
      #top #header_meta .phone-info>div>div {
        display: flex !important;
        align-items: center !important;
        justify-content: start !important;
        flex-direction: column;
        gap: 4px !important;
      }
    }

    Result:

    Screenshot-2025-12-02-at-2-42-48-PM

    Best regards,
    Ismael

    #1492011

    Hi,

    Nailed it! We need to set overflow visible to both ul.avia-slideshow-inner and li.avia-slideshow-slide. Here is the complete CSS:

    div.liste-recette div.avia-inner-caption h2.avia-caption-title {
    	font: inherit;
    	color: black;
    	background: none;
    	line-height: 1.2;
    	padding-left: 0;
    	padding-right: 0;
    }
    div.liste-recette div.avia-caption-content p {
    	color: black;
    	background: none;
    	line-height: 1.2;
    	padding-top: 0;
    	padding-left: 0;
    	padding-right: 0;
    }
    div.liste-recette ul.avia-slideshow-inner {
        margin-bottom: 100px;
        overflow: visible;
    }
    div.liste-recette li.avia-slideshow-slide {
        overflow: visible;
    }
    div.liste-recette div.av-slideshow-caption {
        bottom: -90px;
        width: 100%;
        padding: 0;
        left: 0;
    }

    Best regards,
    Serge

    #1492010

    Hi,

    I want to display the title and cation of an Easy Slider below the images on this page, with title on the right at 25% width and caption on the left at 75% width. I tried code from other threads with the same topic to no avail.

    I did set “liste-recette” as a custom CSS class for my Easy Slider element. I did successfully hide the slideshow controls with the following CSS:

    div.liste-recette div.avia-slideshow-controls {
    	display: none;
    }

    I tried code from other threads with the same topic but, after several hours hammering on that, I can’t figure out the correct CSS to make it work.

    Best regards,
    Serge

    #1492002

    use the font-manager of enfold – it works great – even for variable fontfiles

    first – if you compress your font-files on a mac (OSX) it will include even the typically non visible files on OSX folder. This is what you see – when you are talking about Font: MACOSX ( font-family: macosx ).
    But your font-file of berthold should be there too.

    I do not know if fontsquirrel can convert otf files of variable Fonts to ttf or woff2.

    just one moment – i’m looking for an older post of mine. …

    https://kriesi.at/support/topic/how-to-submit-and-use-custom-fonts/#post-1470894

    you can download that script app – just place it on your desktop – and drag & drop files there to zip.

    Or use keka to compress your font folder. And do not include invisible files

    after compression it should show inside that font zip file only the fonts – and nothing else:

    #1491996
    Eleina_Shinn
    Participant

    I have followed Ismael’s instructions to make my top bar larger, add isonc etc., and it looks great, thank you! The only problem is that it now doens’t look good on mobile. It should stack on mobile, Phone number at the top, then email underneath, and both centered. Is it possible to make it do that?

    Thank you so much!

    thefamilytreedition.com/bypass

    Hi,

    Thank you for the inquiry.

    Adding this code in the Quick CSS field should correct the layout issue on mobile view:

    @media only screen and (max-width: 768px) {
    
      /* Add your Mobile Styles here */
      #commentform label {
        position: relative;
        left: auto;
        top: 0;
      }
    
      #top .comment-form-cookies-consent label {
        top: -30px;
      }
    }

    Screenshot:

    Screenshot-2025-12-01-at-2-30-24-PM

    Best regards,
    Ismael

    Hi,
    For mobile add this css:

    #top #wrap_all .header_color .menu-item-30.av-menu-button-colored > a .avia-menu-text {
        background-color: #6c0f1b;
        border-color: #6c0f1b;
    }
    #top #wrap_all .header_color .av-menu-button-colored > a:hover .avia-menu-text {
        color: #000;
    }
    

    Please note that mobile devices don’t have a hover rule, but the color changes on click, like the desktop hover, adjust to suit.

    Best regards,
    Mike

Viewing 30 results - 181 through 210 (of 142,595 total)