Viewing 30 results - 511 through 540 (of 18,716 total)
  • Author
    Search Results
  • Using Masonry Gallery.
    Content> Captions> Display Neither.

    Like I stated before, I want this title of the Portfolio Page which appears over the cover image to be White not gray. I don’t want to hisde it. Also there should be a way to attenuate the other type elements, Font, size etc.

    I can not show you a link because this is local and not live yet.

    #1465356

    Hey beyond-flora,
    Try this code:

    function garden_progress_bars_shortcode($atts) {
        $atts = shortcode_atts(
            array(
                'pre_cultivation_start' => '',
                'pre_cultivation_end' => '',
                'planting_start' => '',
                'planting_end' => '',
                'harvest_start' => '',
                'harvest_end' => '',
                'pre_cultivation_color' => '',
                'planting_color' => '',
                'harvest_color' => '',
                'pre_cultivation_label' => '',
                'planting_label' => '',
                'harvest_label' => '',
                'pre_cultivation_link' => '',
                'planting_link' => '',
                'harvest_link' => '',
            ),
            $atts,
            'garden_progress_bars'
        );
        
        $output = '
        <style>
            .garden-progress-bars {
                font-family: Arial, sans-serif;
                max-width: 960px; 
                margin: 0 auto;
            }
            .progress-header, .progress-header div:not(.header-offset) {
                display: inline-flex;
                width: 100%;
                justify-content: space-evenly;
            }
    		.progress-header div:not(.header-offset) {
        		border-left: 1px solid #eee;
            }
            .month {
                width: calc((100% - 160px)/12); 
                text-align: center;
            }
            .progress-row {
                display: flex;
                align-items: center;
                margin-bottom: 10px;
            }
            .label-container {
                width: 150px; 
                text-align: right;
                padding-right: 10px; 
            }
            .progress-container {
                display: flex;
                width: calc(100% - 160px); 
                align-items: center;
            }
            .progress-bar-container {
                flex-grow: 1;
                background-color: #000;
                height: 20px;
                position: relative;
            }
            .progress-bar {
                height: 100%;
                position: absolute;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-weight: bold;
                font-size: 12px;
                text-align: center;
            }
            .progress-header .header-offset {
                width: 150px;
    			display: inline-flex;
                flex-shrink: 0;
            }
        </style>
        <div class="garden-progress-bars">
            <div class="progress-header">
                <div class="header-offset"></div>'; 
                
        $months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
        foreach ($months as $month) {
            $output .= "<div class='month'>$month</div>";
        }
        $output .= '</div>'; 
        
        $create_progress_bar_row = function($label, $color, $start, $end, $link) use ($months) {
            $start_month_index = array_search($start, $months);
            $end_month_index = array_search($end, $months);
            $width = (($end_month_index - $start_month_index + 1) / 12) * 100;
            $left = ($start_month_index / 12) * 100;
            $bar_content = "<div class='progress-bar' style='background-color: $color; width: $width%; left: $left%;'>$label</div>";
            if ($link) {
                $bar_content = "<a href='$link' target='_blank' style='display: block; height: 100%;'>$bar_content</a>";
            }
            return "
            <div class='progress-row'>
                <div class='label-container'>$label</div>
                <div class='progress-container'>
                    <div class='progress-bar-container'>
                        $bar_content
                    </div>
                </div>
            </div>";
        };
        
        $output .= $create_progress_bar_row($atts['pre_cultivation_label'], $atts['pre_cultivation_color'], $atts['pre_cultivation_start'], $atts['pre_cultivation_end'], $atts['pre_cultivation_link']);
        $output .= $create_progress_bar_row($atts['planting_label'], $atts['planting_color'], $atts['planting_start'], $atts['planting_end'], $atts['planting_link']);
        $output .= $create_progress_bar_row($atts['harvest_label'], $atts['harvest_color'], $atts['harvest_start'], $atts['harvest_end'], $atts['harvest_link']);
    
        $output .= '</div>'; 
    
        return $output;
    }
    add_shortcode('garden_progress_bars', 'garden_progress_bars_shortcode');

    and this shortcode on your page:

    [garden_progress_bars 
        pre_cultivation_start="Jan" 
        pre_cultivation_end="Mar" 
        pre_cultivation_color="green" 
        pre_cultivation_label="Pre-cultivation" 
        pre_cultivation_link="https://example.com/pre-cultivation"
    
        planting_start="Apr" 
        planting_end="Jun" 
        planting_color="blue" 
        planting_label="Planting" 
        planting_link="https://example.com/planting"
    
        harvest_start="Jul" 
        harvest_end="Sep" 
        harvest_color="orange" 
        harvest_label="Harvest" 
        harvest_link="https://example.com/harvest"
    ]

    Each bar will be a link with a new label:
    Screen Shot 2024 08 25 at 10.11.41 AM

    Best regards,
    Mike

    #1465259

    Topic: Resize H1 e H1 font

    in forum Enfold
    maryenvato
    Participant

    Hi,
    on the site, I manually set the size of the H1 and H2.
    Now, how can I reset the size of the H1 and H2 using CSS? Is it possible?

    Looking forward to hearing from you.
    Best regards.
    MS

    #1465177

    In reply to: header problem

    Hey Gianluca,
    Thanks for the login, in your Enfold Theme Options ▸ Header ▸ Extra Elements ▸ Phone Number or small info text you had a phone number link that was unclosed, causing the error.
    To make your portfolio sort text larger try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .avia-fullwidth-portfolio .sort_width_container {
    	font-size: 30px;
    } 

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.
    Please adjust the font size to suit.

    Best regards,
    Mike

    #1465102

    Hi,

    Thanks for that. Please try to remove the !important bit from your CSS, then add this media query:

    @media only screen and (max-width: 600px) {
    #header_meta a {
      font-size: 12px;
    }
    #header_meta .sub_menu li ul {
      left: 0;
    }
    }

    Best regards,
    Rikard

    #1465011
    billbasler
    Participant

    Enfold, I am working on a site currently at preucil.baslerdesign.com, probably my 15-20th site built on Enfold. I am getting pretty good at figuring things out, but I need help here.

    Unfortunately, I am dealing with fairly lengthy secondary menu names: Preucil School of Music | Preucil Preschool | Music Together®

    the length of these three items just does not work well on phone sizes. I reached out to your all some time back to help my with some code to increase the font size on these for phone break point:

    /*—————————————-
    // Increase the size of Secondary Menu text
    //————————————–*/
    #header_meta a, #header_meta span {
    font-size:15px !important;
    }

    This has worked fine. But, different devices are breaking the menu at different places. My iPhone 13 Max breaks after Preucil School of Music, dropping Preucil Preschool and Music Together to a second line.

    Other Android Devices, a putting Preucil School of Music and Preucil Preschool on the first line and dropping just Music Together to the second line.

    Given this, the behavior of the secondary menu dropdowns are wonky. My iPhone does a good job of keeping the dropdown content “on-screen” without cropping off the content at the left of the screen. My client’s iPhone is reportedly chopping off the dropdown content.

    I am stumped. My first thought was that maybe they are changing text sizes through accessibility settings causing this. My other client is an Android user and is reporting the same thing.

    I am wondering if breaking these secondary nav into three lines would work. The three lines would have some sort of break control where I could break each line predictably. This solution would be uglier than I would like but the reality is the “Preucil School of Music” item takes up one line at a reasonable size by itself.

    And, if this can be done, it would be nice to have some sort of line-height control so that the spacing between lines is mobile friendly as each of these need to be clickable.

    Any other thoughts?

    #1464997

    Topic: Menu Sidebar Styling

    in forum Enfold
    dinoman17
    Participant

    Hello!

    I recently purchased this theme and I would like to style the menu items only in the sidebar navigation. I can’t seem to locate the settings it in the Advanced Styling section. Where can I find the settings to change the font size, color, etc..

    Website screenshot

    #1464916

    Hi,
    Thanks for the test page, so to have a different SVG icon for each item you need to use a different font-icon for each item so you can use a different code in the css for each item:
    Enfold Support 6461
    I then copied the base css from the example link and added your font-icon codes and your SVG icon URLs:

    [data-av_iconfont="entypo-fontello"][data-av_icon="\e89f"]:before{font-size:0;width: 50px; height: 50px; display: inline-block; background-size: contain;background-image: url(/wp-content/uploads/2024/08/home-icon.png) !important}
    [data-av_iconfont="entypo-fontello"][data-av_icon="\e8a0"]:before{font-size:0;width: 50px; height: 50px; display: inline-block; background-size: contain;background-image: url(/wp-content/uploads/2024/08/people-icon.png) !important}
    [data-av_iconfont="entypo-fontello"][data-av_icon="\e8a1"]:before{font-size:0;width: 50px; height: 50px; display: inline-block; background-size: contain;background-image: url(/wp-content/uploads/2024/08/bed-icon.png) !important}
    [data-av_iconfont="entypo-fontello"][data-av_icon="\e8a2"]:before{font-size:0;width: 50px; height: 50px; display: inline-block; background-size: contain;background-image: url(/wp-content/uploads/2024/08/bath-icon.png) !important}

    Then to make the gray backgrounds transparent I added this css:

    .page-id-321 .main_color .avia-icon-list .iconlist_icon {
        background-color: transparent;
    }

    This is the result:
    Enfold Support 6463

    Best regards,
    Mike

    #1464834

    Hi,
    As I understand your test site outer box shadow works good:
    Screen Shot 2024 08 17 at 12.54.28 PM
    but your live site is not:
    Screen Shot 2024 08 17 at 12.55.52 PM
    I first note that in your code block you have HEAD & BODY tags please don’t add these, I also note that your page is not published, the WordPress preview will not always display the page correctly, I also see that your HTML in the code block adds css for “.container” & “body” that targets the page and not just the code block element.
    So I remove the HEAD & BODY tags, change “.container” to “.zip-container” and publish, and now it is mostly correct:
    Screen Shot 2024 08 17 at 1.27.39 PM
    the corrected code:

    <script>
    var gform;gform||(document.addEventListener("gform_main_scripts_loaded",function(){gform.scriptsLoaded=!0}),window.addEventListener("DOMContentLoaded",function(){gform.domLoaded=!0}),gform={domLoaded:!1,scriptsLoaded:!1,initializeOnLoaded:function(o){gform.domLoaded&&gform.scriptsLoaded?o():!gform.domLoaded&&gform.scriptsLoaded?window.addEventListener("DOMContentLoaded",o):document.addEventListener("gform_main_scripts_loaded",o)},hooks:{action:{},filter:{}},addAction:function(o,n,r,t){gform.addHook("action",o,n,r,t)},addFilter:function(o,n,r,t){gform.addHook("filter",o,n,r,t)},doAction:function(o){gform.doHook("action",o,arguments)},applyFilters:function(o){return gform.doHook("filter",o,arguments)},removeAction:function(o,n){gform.removeHook("action",o,n)},removeFilter:function(o,n,r){gform.removeHook("filter",o,n,r)},addHook:function(o,n,r,t,i){null==gform.hooks[o][n]&&(gform.hooks[o][n]=[]);var e=gform.hooks[o][n];null==i&&(i=n+"_"+e.length),gform.hooks[o][n].push({tag:i,callable:r,priority:t=null==t?10:t})},doHook:function(n,o,r){var t;if(r=Array.prototype.slice.call(r,1),null!=gform.hooks[n][o]&&((o=gform.hooks[n][o]).sort(function(o,n){return o.priority-n.priority}),o.forEach(function(o){"function"!=typeof(t=o.callable)&&(t=window[t]),"action"==n?t.apply(null,r):r[0]=t.apply(null,r)})),"filter"==n)return r[0]},removeHook:function(o,n,t,i){var r;null!=gform.hooks[o][n]&&(r=(r=gform.hooks[o][n]).filter(function(o,n,r){return!!(null!=i&&i!=o.tag||null!=t&&t!=o.priority)}),gform.hooks[o][n]=r)}});
    
    document.addEventListener('DOMContentLoaded', () => {
        const form = document.getElementById('zipcodeForm');
        const input = document.getElementById('zipcodeInput');
        const errorMessage = document.getElementById('errorMessage');
    
        fetch('https://welsbpo.net/wp-content/uploads/zipcodes.json')
            .then(response => response.json())
            .then(zipcodeData => {
                form.addEventListener('submit', (e) => {
                    e.preventDefault();
                    const zipcode = input.value.trim();
    
                    if (zipcodeData[zipcode]) {
                        window.location.href = zipcodeData[zipcode];
                    } else {
                        errorMessage.textContent = 'Zipcode not found. Please try again.';
                    }
                });
            })
            .catch(error => {
                console.error('Error fetching zipcode data:', error);
                errorMessage.textContent = 'An error occurred. Please try again later.';
            });
    });
    </script>
        <style>
            body {
                font-family: Arial, sans-serif;
                display: flex;
                justify-content: center;
                align-items: center;
                margin: 0;
                background-color: #f0f0f0;
            }
    
            .zip-container {
                background-color: white;
                padding: 2rem !important;
                border-radius: 8px;
                box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
                text-align: center;
            }
    
            h3 {
                margin-bottom: 1rem;
            }
    
            form {
                display: flex;
                justify-content: center;
                margin-bottom: 1rem;
            }
    
            input {
                padding: 0.5rem;
                font-size: 1rem;
                border: 1px solid #ccc;
                border-radius: 4px 0 0 4px;
            }
    
            button {
                padding: 0.5rem 1rem;
                font-size: 1rem;
                background-color: #007bff;
                color: white;
                border: none;
                border-radius: 0 4px 4px 0;
                cursor: pointer;
            }
    
            button:hover {
                background-color: #0056b3;
            }
    
            .error {
                color: red;
            }
        </style>
        <div class="zip-container">
            <h3>Zipcode Redirect</h3>
            <form id="zipcodeForm">
                <input type="text" id="zipcodeInput" placeholder="Enter zipcode" required>
                <button type="submit">Go</button>
            </form>
            <p id="errorMessage" class="error"></p>
        </div>

    Best regards,
    Mike

    #1464826

    Hi,
    Thanks, this page has a page ID class of: page-id-17847 and since there is only one scroll-down-link you can just use this:

    #top.page-id-17847 .scroll-down-link {
    color: red !important;
    font-size: 150px !important;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4) !important;
    }

    Best regards,
    Mike

    #1464766
    This reply has been marked as private.
    #1464720

    In reply to: Code Korrekturen

    Hi Ismael,

    take this Code:

    <ul style="list-style-type: none; margin-left: 02px; padding-top: 8px; padding-bottom: 12px; padding-left: 0px;">
     	<li style="display: flex; margin-bottom: 12px;">
               <span style="font-size: 18px; color: green; white-space: nowrap; margin-right: 10px;">✔ </span>
               <span style="font-size: 18px;">xzzz</span></li>
     	<li style="display: flex; margin-bottom: 12px;">
               <span style="font-size: 18px; color: green; white-space: nowrap; margin-right: 10px;">✔ </span>
               <span style="font-size: 18px;">text</span></li>
     	<li style="display: flex; margin-bottom: 12px;">
               <span style="font-size: 18px; color: green; white-space: nowrap; margin-right: 10px;">✔ </span>
               <span style="font-size: 18px;">topic</span></li>
    </ul>
    

    Save it, click again on the Text-Element, it will be lost in this moment.

    BR
    Ralf

    #1464680

    Hi,

    Please try this CSS instead:

    .grid-entry .grid-entry-excerpt {
      color: #000;
      font-size: 16px;
      text-align: left;
      font-style: normal;
    }

    Best regards,
    Rikard

    #1464650

    Hi,

    Thank you for the update.

    You can either decrease the size of the font to make sure it fits in the container or add this css code to change how words or text breaks.

    #top #wrap_all .av-inherit-size .av-special-heading-tag {
        word-wrap: break-word;
    }
    

    Best regards,
    Ismael

    #1464625

    Hey rixi,

    Please try the following in Quick CSS under Enfold->General Styling:

    .grid-entry .grid-entry-excerpt {
      color: #000;
      font-size: 16px;
    }

    Best regards,
    Rikard

    #1464574

    In reply to: Tooltip with copy

    Hi,

    Thank you for the update.

    The implementation above relies on the “data-copy” attribute, which cannot be added to any builder elements. You may need to manually copy the HTML into a code or text block. If you need it to look like a default builder button, you can try this html:

    
    <div class="avia-button-wrap avia-button-center">
        <a href="javascript:void(0);" 
           class="avia-button av-lzt94u23-6a241e487832b9aa657eb8d56d62aa80 av-link-btn avia-icon_select-yes-left-icon avia-size-small avia-position-center avia-color-theme-color btn-copy js-tooltip js-copy"
           data-toggle="tooltip"
           data-placement="bottom"
           data-copy="https://urltocopy.com/test/"
           title="Copy URL"
           onclick="var tempInput = document.createElement('textarea'); tempInput.value = this.getAttribute('data-copy'); document.body.appendChild(tempInput); tempInput.select(); document.execCommand('copy'); document.body.removeChild(tempInput); alert('URL copied to clipboard: ' + tempInput.value);">
            <span class="avia_button_icon avia_button_icon_left" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span>
            <span class="avia_iconbox_title">Click me</span>
        </a></div>
    

    Best regards,
    Ismael

    #1464571

    Hey spokerstradingco,

    Thank you for the inquiry.

    On smaller screens, the font size is set to 0.8em. Did you configure the font size for different screen sizes (Styling > Font Sizes > Heading Font Sizes)?

    #top #wrap_all .av-special-heading.av-lxums4ni-4f37f7f215843741833d4240ad4206d4 .av-special-heading-tag {
        font-size: 0.8em;
    }

    Best regards,
    Ismael

    #1464558
    spokerstradingco
    Participant

    Hi, I added the code form this thread but it didn’t seem to work. https://kriesi.at/support/topic/full-page-overlay-menu-font-size/

    #1464553
    spokerstradingco
    Participant

    HI, I have a 2 part question. On desktop The special heading product titles are overlapping the column boxes on my page. I have set the default font size to 5.5vw for all meaning the font should adapt but it is not. I have added a screenshot of the issue in private. This happen on Chrome and Safari. On mobile the special titles are too small – how do I make them larger on mobile? It adapts but is very small. I know I can add a default value to the mobile size but thought the auto text size would adjust to the width?

    #1464413

    In reply to: Slider text

    Hi,
    Thanks for the links to your pages, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 425px) { 
    #top #wrap_all #main .avia-slideshow .av-slideshow-caption .avia-caption-title,
    #top #wrap_all #main .avia-slideshow .av-slideshow-caption .avia-caption-content p,
    #top #main .avia-slideshow .av-slideshow-caption .avia-caption-content {
        font-size: 20px;
        margin: 0;
    }
    .html_header_transparency #top #main .avia-builder-el-0 .slideshow_caption {
    	padding-top: 0;
    }
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1464401

    Topic: Code Korrekturen

    in forum Enfold
    RSTAC
    Participant

    Hi Enforld Team and Developers,
    nach dem Enfold Update eine alten Website, werden viele Code-Teile mit Inline CSS beim Öffnen der Blöcke (z.B. Code- oder Text-Element) verändert.

    Vorher:

    <ul style="list-style-type: none; margin-left: 02px; padding-top: 8px; padding-bottom: 12px; padding-left: 0px;">
     	<li style="display: flex; margin-bottom: 12px;">
               <span style="font-size: 18px; color: green; white-space: nowrap; margin-right: 10px;">✔ </span>
               <span style="font-size: 18px;">xzzz</span></li>
     	<li style="display: flex; margin-bottom: 12px;">
               <span style="font-size: 18px; color: green; white-space: nowrap; margin-right: 10px;">✔ </span>
               <span style="font-size: 18px;">text</span></li>
     	<li style="display: flex; margin-bottom: 12px;">
               <span style="font-size: 18px; color: green; white-space: nowrap; margin-right: 10px;">✔ </span>
               <span style="font-size: 18px;">topic</span></li>
    </ul>

    Nachher

    <ul style="list-style-type: none; margin-left: 02px; padding-top: 8px; padding-bottom: 12px; padding-left: 0px;">
     	<li style="display: flex; margin-bottom: 12px;"><span style="font-size: 18px;">xzzz</span></li>
     	<li style="display: flex; margin-bottom: 12px;"><span style="font-size: 18px;">text</span></li>
     	<li style="display: flex; margin-bottom: 12px;"><span style="font-size: 18px;">topic</span></li>
    </ul>

    Ich verstehe den Sinn, möchte aber nicht die ganze Website neu machen.
    Wo kann ich das abschalten.

    BR
    Ralf

    English: .. after the Enfold update of an old website, many code parts with inline CSS are changed when opening the blocks.
    I understand the point, but I don’t want to redo the whole website.
    Where can I disable this?

    P.S.: Sorry, ich habe vorher im Forum gesucht, finde wohl nicht die richtigen Suchbegriffe um fündig geworden zu sein.

    • This topic was modified 1 year, 6 months ago by RSTAC.
    • This topic was modified 1 year, 6 months ago by RSTAC.
    #1464324

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 425px) { 
    	.html_header_transparency #top .avia-builder-el-0 .slideshow_caption {
        padding-top: 0;
    }
    #top #wrap_all #main .avia-slideshow .avia-caption-title {
        font-size: 40px;
    }
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1464221
    This reply has been marked as private.
    #1464217

    In reply to: Zoom

    you can increase your font-size for that.

    
    #avia2-menu .menu-item a {
      font-size: 14px;
    }
    #1464016

    PS : maybe you give that a chance?
    Test:

    html #top  #menu-item-search a {
      transform: translateX(25px) scale(0.6);
      transform-origin: right;
      width: 85px !important;
    }
    
    html #top  #menu-item-search a {
      border: 1px solid #FFF !important;
      font-size: 40px !important;
      color: #8FCCF7 !important;
      text-align: center !important;
      padding: 0px !important;
      position: relative;
      top:1px;
    }
    
    html.av-burger-overlay-active #top #menu-item-search a {
      position: relative;
      color: #19304D !important;
      background-color: #27868E !important;
      border: 1px solid #e1e1e1 !important;
    }
    
    html #top  #menu-item-search:hover a {
      color: #FFF!important;
      background-color: #237299 !important;
      border: 1px solid #FFF !important;
    }
    
    html.av-burger-overlay-active #top #menu-item-search:hover a {
      color: #333!important;
      background-color: #27868E !important;
    }
    
    #top .avia-search-tooltip .avia-arrow-wrap {
      top: -20px;
      right: 35px;
    }
    
    #top .header_color #menu-item-search .avia-tt {
    	background: #237299 !important;
    }
    
    #top .header_color #menu-item-search  #searchsubmit {
      background-color: #399bcb;
    }

    Hi,

    Please try this as well:

    #av-burger-menu-ul .menu-item-has-children .sub-menu li a .avia-menu-text {
      font-size: 14px; 
    }

    Best regards,
    Rikard

    Hi Rikard
    Tnx for the code; the colour works but the size of the font is not working unfortunately…..
    Greetz
    Karin

    #1463883

    Hi,
    I added your horizontal gallery to your archive pages with this function.php file:

    add_action('ava_after_main_container', 'ava_after_main_title_mod');
    function ava_after_main_title_mod() {
    	if ( is_archive() ) {
    		echo do_shortcode("[av_horizontal_gallery ids='3297,3299,3315,3298,3318,3308,3316,3303,3317' ids_dynamic='' initial='' img_copyright='' height='20' size='large' gap='no' active='' control_layout='av-control-hidden' slider_navigation='av-navigate-arrows av-navigate-dots' nav_visibility_desktop='' nav_arrow_color='' nav_arrow_bg_color='' nav_dots_color='' nav_dot_active_color='' lightbox_arrow_color='' lightbox_arrow_bg_color='' img_copyright_font='' av-desktop-font-img_copyright_font='' av-medium-font-img_copyright_font='' av-small-font-img_copyright_font='' av-mini-font-img_copyright_font='' img_copyright_color='' img_copyright_bg='' transition_speed='' autoplay='true' interval='3' manual_stopper='aviaTBmanual_stopper' links='active' link_dest='' lightbox_text='' img_scrset='' lazy_loading='disabled' alb_description='' id='' custom_class='' template_class='' av_uid='av-a6srr' sc_version='1.0'][/av_horizontal_gallery]");
    	}
    }

    please check.

    Best regards,
    Mike

    #1463877
    This reply has been marked as private.

    Hey leloux,

    Please try the following in Quick CSS under Enfold->General Styling:

    
    #av-burger-menu-ul .menu-item-has-children .sub-menu li a {
      font-size: 14px; 
      color: red;
    }

    Best regards,
    Rikard

Viewing 30 results - 511 through 540 (of 18,716 total)