Viewing 30 results - 1 through 30 (of 18,700 total)
  • Author
    Search Results
  • #1494205

    Hey ricedean,

    Thank you for the inquiry.

    You can try this filter in the functions.php file:

    add_filter( 'avf_masonry_loop_entry_content', 'avf_masonry_loop_entry_content_mod', 10, 4 );
    
    function avf_masonry_loop_entry_content_mod( $content, $entry, $entries, $key ) {
        $is_sold = get_post_meta( $entry->ID, 'sold', true );
    
        if ( $is_sold ) {
            $content .= '<span class="av-masonry-sold-overlay">SOLD</span>';
        }
    
        return $content;
    }
    

    Then add this css code:

    .av-masonry-entry {
        position: relative;
    }
    
    .av-masonry-sold-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 48px;
        font-weight: 900;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #ff0000;
        background: none;
        z-index: 10;
        pointer-events: none;
    }

    You’ll need to add a custom field named “sold” to each entry.

    Best regards,
    Ismael

    #1494097
    Jan Thiel
    Participant

    Hey there,

    running Enfold 7.1.3 on WordPress 6.9 with PHP 8.2.
    WordPress Multisite.

    We face an issue where a site hits the OOM with 512M Memory configured when opening any Icon Font Related Avia Builder Element Popup in the wp-admin editor.

    Tracing the issue down we pinpointed the SVG handling to be quite an issue regarding memory usage.

    The site uses 9 Icon Fonts with a total size of ~7M. Only a part of that is actually SVG content. So let’s assume we talk about 1,5MB SVG files.

    $ wp-content/uploads/dynamic_avia/avia_icon_fonts/
    `
    1.3M ./font-awesome-bold-01
    1.4M ./font-awesome-bold-02
    911K ./font-awesome-bold-03
    1.9M ./font-awesome-brands
    454K ./font-awesome-regular
    42K ./k-iconpack01
    283K ./k-iconpack02
    46K ./m-icon-set-01
    24K ./m-signet
    `

    Parsing these files lead to memory allocations of around 700MB.

    Related files are “class-font-manager.php” and “class-svg-images.php” with the functions around set_svg_markup and get_icon_html. As well as followup native PHP functions down the stack trace (simplexml_load_string and substr_replace in particular).
    Besides the OOM the SimpleXML calls consume about 1s alone processing time.

    We identified several issues with the current implementation that could lead to this issue without being able to easily provide a “fix” as everything is quite tightly couples around the in-memory “cache” handling:

    Unlimited cache: The protected $cache stores complete SVG strings without size limits → uncontrolled increase in RAM usage.

    Unvalidated input loading: file_get_contents / curl_exec load entire files/responses without upfront limits → large memory spikes.

    cURL without abort callback: Remote downloads can grow arbitrarily large (no Content-Length or progress checks).

    String operations create copies: substr_replace, preg_match_all, str_replace on large strings increase peak memory consumption.

    DOM parsing with SimpleXML: isColoredSVGWithGradients uses simplexml_load_string → the entire XML tree is loaded into memory, potentially multiplying memory usage and introducing XXE/DoS risks.

    Missing size validation: No limits are enforced before parsing or caching (local or remote).

    Potential format-parsing risks: Regex-based extract_svg_attributes on large inputs can be computationally expensive.

    We use Datadog to create Traces and Profile of our application. We were able to confirm that the SimpleXML related code as well as the regex based ops on the SVG file content trigger the OOM in most cases.
    I can easily share the Flame Graphs of the Memory Allocation and the Processing Times if you like. We find them to be most helpful in understanding what actually happens at the runtime in code :-)

    The issue is reproducible for this single site so the issue will be most certainly based on the actual icon font files although they are valid SVG. So we are happy to give any fix a test before any coming release. As we operate a server cluster, just provide me the diffs / changes and we will apply and test them ourselves.

    Let me know if you need any more information. I shared a link to the icon font files in the private content section.

    Best Regards,
    Jan

    #1494087

    Hi,

    Thank you for the update.

    Are you referring to the h1 in the Text Block element? The font size is added as an inline style, so you’ll need to remove it or override it with custom css.

    <span style="font-family: montserrat, sans-serif; font-size: 64px;">Passerelles et Compétences</span>
    

    Example:

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      section.av_textblock_section.av-mfe046ge-53ca3090203dd5a03e44d0f3d1765a66 .avia_textblock h1 span {
        font-size: 42px !important;
      }
    }

    Best regards,
    Ismael

    #1494037

    Hey SurigliaStudio,
    When I test your site the “Taglie” button doesn’t create a mobile style flyout menu, I assume that you now have the plugin disabled, but I think that I understand. I have created a custom function that will create a mobile style overlay menu from a sticky button on the right using a image that you can choose:
    fUawEAX.md.png
    fUaOLwF.md.png
    and on mobile the overlay is about 95% of the screen.
    The function uses the Named Menus from your WordPress menus to show:
    fUaQF6B.md.png
    In Configuration there is a line to choose your menu image/icon and the default menu to show on all pages:
    fUcd32j.md.png
    and below you can add as many additional menus with an array of pages that they will show on:
    fUcFI4e.md.png
    The code also has all of the css built-in for styling if you want to adjust.
    Add this code to your child theme functions.php file, if you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
    fUcTO4R.jpg
    then add the above code and save.

    /**
     * Add Sticky Button with Fly-out Menu
     * Add this to your Enfold child theme's functions.php
     */
    
    function custom_sticky_menu_button() {
        // Configuration - Change these values as needed
        $button_image = '/wp-content/uploads/2026/01/menu.png'; // Update path to your PNG
        $menu_slug = 'sticky menu'; // Default menu slug - change as needed
        
        // Optional: Set different menu based on page ID
        $current_page_id = get_the_ID();
        // Example: Use different menu for specific pages
         if (in_array($current_page_id, array(1028, 1080, 1031, 1034))) {
            $menu_slug = 'sticky menu two';
         }
    	if (in_array($current_page_id, array(1376, 1331, 1277, 1283))) {
            $menu_slug = 'sticky menu three';
         }
        
        // Get the menu
        $menu_items = wp_get_nav_menu_items($menu_slug);
        
        if (!$menu_items) {
            return; // Exit if menu doesn't exist
        }
        ?>
        
        <!-- Sticky Button -->
        <div id="sticky-menu-btn" class="sticky-menu-button">
            " alt="Menu">
        </div>
        
        <!-- Fly-out Menu Overlay -->
        <div id="flyout-menu-overlay" class="flyout-menu-overlay">
            <div class="flyout-menu-close">×</div>
            <nav class="flyout-menu-content">
                <?php
                wp_nav_menu(array(
                    'menu' => $menu_slug,
                    'container' => false,
                    'menu_class' => 'flyout-nav-menu',
                    'fallback_cb' => false
                ));
                ?>
            </nav>
        </div>
        
        <style>
            /* Sticky Button Styles */
            .sticky-menu-button {
                position: fixed;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
                width: 50px;
                height: 50px;
                border-radius: 50%;
                cursor: pointer;
                z-index: 9998;
                transition: opacity 0.3s ease;
                box-shadow: 0 2px 10px rgba(0,0,0,0.3);
                overflow: hidden;
            }
            
            .sticky-menu-button img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            
            .sticky-menu-button.hidden {
                opacity: 0;
                pointer-events: none;
            }
            
            /* Fly-out Menu Overlay */
            .flyout-menu-overlay {
                position: fixed;
                top: 0;
                right: -100%;
                width: 25%;
                height: 100vh;
                background: #fff;
                z-index: 9999;
                transition: right 0.4s ease;
                box-shadow: -2px 0 10px rgba(0,0,0,0.2);
                overflow-y: auto;
            }
            
            .flyout-menu-overlay.active {
                right: 0;
            }
            
            /* Close Button */
            .flyout-menu-close {
                position: absolute;
                top: 20px;
                right: 20px;
                font-size: 36px;
                cursor: pointer;
                color: #333;
                width: 40px;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                line-height: 1;
                transition: color 0.3s ease;
            }
            
            .flyout-menu-close:hover {
                color: #000;
            }
            
            /* Menu Content */
            .flyout-menu-content {
                padding: 80px 30px 30px;
            }
            
            .flyout-nav-menu {
                list-style: none;
                margin: 0;
                padding: 0;
            }
            
            .flyout-nav-menu li {
                margin: 0 0 15px 0;
            }
            
            .flyout-nav-menu a {
                display: block;
                padding: 12px 0;
                color: #333;
                text-decoration: none;
                font-size: 16px;
                transition: color 0.3s ease;
                border-bottom: 1px solid #eee;
            }
            
            .flyout-nav-menu a:hover {
                color: #000;
            }
            
            /* Sub-menu styles */
            .flyout-nav-menu .sub-menu {
                list-style: none;
                margin: 10px 0 0 20px;
                padding: 0;
            }
            
            .flyout-nav-menu .sub-menu a {
                font-size: 14px;
                padding: 8px 0;
            }
            
            /* Mobile Styles */
            @media (max-width: 768px) {
                .flyout-menu-overlay {
                    width: 95%;
                }
            }
        </style>
        
        <script>
            (function() {
                var btn = document.getElementById('sticky-menu-btn');
                var overlay = document.getElementById('flyout-menu-overlay');
                var closeBtn = document.querySelector('.flyout-menu-close');
                
                // Open menu
                btn.addEventListener('click', function() {
                    overlay.classList.add('active');
                    btn.classList.add('hidden');
                    document.body.style.overflow = 'hidden'; // Prevent body scroll
                });
                
                // Close menu
                closeBtn.addEventListener('click', function() {
                    overlay.classList.remove('active');
                    btn.classList.remove('hidden');
                    document.body.style.overflow = ''; // Restore body scroll
                });
                
                // Close on overlay click outside menu
                overlay.addEventListener('click', function(e) {
                    if (e.target === overlay) {
                        overlay.classList.remove('active');
                        btn.classList.remove('hidden');
                        document.body.style.overflow = '';
                    }
                });
            })();
        </script>
        
        <?php
    }
    add_action('wp_footer', 'custom_sticky_menu_button');
    

    Adjust the image, menus, and page IDs to suit.

    Best regards,
    Mike

    #1493972

    Topic: Even more CSS Problems

    in forum Enfold
    Sonno
    Participant

    Hi Enfold Support Team,

    I’m experiencing persistent CSS issues with the Enfold theme on my WordPress site that are affecting responsiveness and styling, particularly for mobile and desktop layouts. Custom CSS added via Quick CSS or the child theme’s style.css often fails to apply, gets overridden, or doesn’t update despite clearing all caches (browser, plugins, server-side). Changes to theme options like advanced styling, colors, or typography also don’t reflect on the frontend reliably.

    Specific Problems
    Caching/Loading Issues: Styles revert or show defaults even after disabling CSS/JS merging and compression in Enfold > Performance.

    Responsive Design Breaks: Headings get cut off on iPad/smaller screens (e.g., change font-weight to bold, font-size smaller, text-transform uppercase based on viewport).

    Typography Overrides: Headings and text styles (bold, small caps, uppercase/lowercase transforms) fail to adapt responsively across devices, requiring constant !important hacks that still don’t stick.

    Overrides and Conflicts: Theme options ignore inputs; unclosed Quick CSS blocks break everything; plugin conflicts (e.g., forms, checkouts) exacerbate issues.

    Troubleshooting Steps Tried
    Cleared caches everywhere and tested in incognito mode across browsers (Chrome, Safari, Firefox).

    Disabled caching plugins, performance optimizations, and child theme customizations temporarily—no fix.

    Updated WordPress, Enfold, PHP (tested 7.4 vs. 8), and relevant plugins; issue persists across devices including Mac OS.

    A staging site/credentials can be provided for testing. Any guidance on debugging responsive heading styles, CSS caching, or fixes would be greatly appreciated!

    • This topic was modified 1 week, 1 day ago by Sonno.
    #1493926

    here is a way to have the option by classes to style those sticky posts by an own selector:

    /**
     * Add a custom CSS class to sticky posts for styling purposes
     */
    function add_sticky_classes( $classes, $class, $post_id ) {
        if ( is_sticky($post_id) ) {
            $classes[] = 'is-sticky-post';
            $classes[] = 'stickypost-' . $post_id;
        }
        return $classes;
    }
    add_filter( 'post_class', 'add_sticky_classes', 10, 3 );
    /* Style sticky items in Masonry */
    .is-sticky-post .av-inner-masonry::after {
        content: 'Featured';
        position: absolute;
        top: 10px;
        right: 10px;
        background: #000;
        color: #fff;
        padding: 2px 8px;
        font-size: 10px;
        text-transform: uppercase;
        z-index: 5
    }
    #1493820

    In reply to: Text Align Justified

    because your css is merged – i can not say where you set this rule – but this might be the reason for it:
    it is in this css block – with comment:

    /**handles:avia-module-blog**/
    /* ======================================================================================================================================================
    #Blog Styles
    ====================================================================================================================================================== */
    #top .fullsize .template-blog .post .entry-content-wrapper {
      text-align: justify;
      font-size: 1.15em;
      line-height: 1.7em;
      max-width: 800px;
      margin: 0 auto;
      overflow: visible;
    }

    if you do not find it – you can overwrite that rule by higher selectivity:

    #top #wrap_all .fullsize .template-blog .post .entry-content-wrapper {
      text-align:  left;
    }

    #1493779
    finchkelsey
    Participant

    HELP!
    I don’t want t0 rebuild what is missing..

    [av_section min_height='custom' min_height_pc='25' min_height_px='300px' padding='default' custom_margin='0px' custom_margin_sync='true' color='main_color' background='bg_color' custom_bg='#f2f2f2' src='https://cdnbeefperforms.ca/wp-content/uploads/2024/03/frying-pans-bg-scaled-1030x687.jpg' attachment='25287' attachment_size='large' attach='scroll' position='center right' repeat='stretch' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.5' overlay_color='#000000' shadow='no-border-styling' bottom_border='no-border-styling']
    [av_heading heading='Foodservice Resources' tag='h2' style='blockquote modern-quote' subheading_active='subheading_below' color='custom-color-heading' custom_font='#ffffff' padding='10' custom_class='white']
    New resources provided by Canada Beef and the Canadian Beef Centre of Excellence.
    [/av_heading]
    [/av_section]

    [av_section min_height_pc='25' min_height_px='500px' padding='default' custom_margin='0px' custom_margin_sync='true' color='main_color' background='bg_color' shadow='no-border-styling' bottom_border='no-border-styling']

    [av_one_fourth first min_height='av-equal-height-column' vertical_alignment='av-align-top' margin='40px' margin_sync='true' padding='40px' padding_sync='true' background='bg_color' background_color='#f2f2f2']
    [av_textblock]
    <h4 style=”text-align: center;”>Appetizers and Soups</h4>
    [/av_textblock]
    [av_image src='https://cdnbeefperforms.ca/wp-content/uploads/2024/05/CDNB_Culinary_Planner_Appetizers_and_Soups_Interactive_F-pdf-796x1030.jpg' attachment='25496' attachment_size='large' align='center' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='fade-in']
    [/av_image]
    [av_button label='View Now' link='manually,https://cdnbeefperforms.ca/wp-content/uploads/2024/03/RS12961_Menu_Planner_Appetizers_and_Soups_Interactive_F_LowRes.pdf' link_target='_blank' size='large' position='center' color='black' custom_bg='#444444' custom_font='#ffffff']
    [av_textblock]
    Beef cuts, known for their rich and savory flavours, are the perfect addition to any soup or appetizer spread. From tenderloin to brisket, there are endless possibilities to create delicious bites that will leave your guests craving for more.
    [/av_textblock]
    [/av_one_fourth]

    [av_one_fourth min_height='av-equal-height-column' vertical_alignment='av-align-top' margin='40px' margin_sync='true' padding='40px' padding_sync='true' background='bg_color' background_color='#f2f2f2']
    [av_textblock]
    <h4 style=”text-align: center;”>Beef Bowls</h4>
    [/av_textblock]
    [av_image src='https://cdnbeefperforms.ca/wp-content/uploads/2024/05/CDNB_Culinary_Planner_Beef_Bowls_Interactive_F-pdf-796x1030.jpg' attachment='25498' attachment_size='large' align='center' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='fade-in']
    [/av_image]
    [av_button label='View Now' link='manually,https://cdnbeefperforms.ca/wp-content/uploads/2024/05/10053_CB_Beef_Bowl_Menu_Planner_Ph5F_Digital.pdf' link_target='_blank' size='large' position='center' color='black' custom_bg='#444444' custom_font='#ffffff']
    [av_textblock]
    Beef bowl entrées are a popular choice among meat lovers and food enthusiasts. These hearty and satisfying dishes showcase the versatility and succulence of various beef cuts. Each cut adds its unique flavour and texture to the dish
    [/av_textblock]
    [/av_one_fourth]

    [av_one_fourth min_height='av-equal-height-column' vertical_alignment='av-align-top' margin='40px' margin_sync='true' padding='40px' padding_sync='true' background='bg_color' background_color='#f2f2f2']
    [av_textblock]
    <h4 style=”text-align: center;”>Burgers</h4>
    [/av_textblock]
    [av_image src='https://cdnbeefperforms.ca/wp-content/uploads/2024/05/CDNB_Culinary_Planner_Burgers_Interactive_F-pdf-796x1030.jpg' attachment='25500' attachment_size='large' align='center' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='fade-in']
    [/av_image]
    [av_button label='View Now' link='manually,https://cdnbeefperforms.ca/wp-content/uploads/2024/05/RS12961_Menu_Planner_Burgers_Interactive_F_LowRes.pdf' link_target='_blank' size='large' position='center' color='black' custom_bg='#444444' custom_font='#ffffff']
    [av_textblock]
    Beef burgers are highly popular and versatile, ideal for quick service and diverse culinary styles. Easy to customize and profitable, they appeal to a broad customer base, fitting various dining settings from fast food to gourmet restaurants, ensuring consistent demand and customer satisfaction.
    [/av_textblock]
    [/av_one_fourth]

    [av_one_fourth min_height='av-equal-height-column' vertical_alignment='av-align-top' margin='40px' margin_sync='true' padding='40px' padding_sync='true' background='bg_color' background_color='#f2f2f2']
    [av_textblock]
    <h4 style=”text-align: center;”>Sandwiches, Flatbreads and Wraps</h4>
    [/av_textblock]
    [av_image src='https://cdnbeefperforms.ca/wp-content/uploads/2024/05/CDNB_Culinary_Planner_Sandwiches_Flatbreads_and_Wraps_Interactive_F-pdf-796x1030.jpg' attachment='25502' attachment_size='large' align='center' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='fade-in']
    [/av_image]
    [av_button label='View Now' link='manually,https://cdnbeefperforms.ca/wp-content/uploads/2024/05/RS12961_Menu_Planner_Sandwiches_Flatbreads_and_Wraps_Interactive_F_LowRes.pdf' link_target='_blank' size='large' position='center' color='black' custom_bg='#444444' custom_font='#ffffff']
    [av_textblock]
    Sandwiches, flatbreads, and wraps are versatile dishes that can be made using various ingredients, and beef cuts are an excellent choice to add a hearty and satisfying flavour to these dishes.
    [/av_textblock]
    [/av_one_fourth]

    [av_one_fourth first min_height='av-equal-height-column' vertical_alignment='av-align-top' margin='40px' margin_sync='true' padding='40px' padding_sync='true' background='bg_color' background_color='#f2f2f2']
    [av_textblock]
    <h4 style=”text-align: center;”>Entrées Salads</h4>
    [/av_textblock]
    [av_image src='https://cdnbeefperforms.ca/wp-content/uploads/2024/05/CDNB_Culinary_Planner_Entree_Salads_Interactive_F-pdf-796x1030.jpg' attachment='25505' attachment_size='large' align='center' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='fade-in']
    [/av_image]
    [av_button label='View Now' link='manually,https://cdnbeefperforms.ca/wp-content/uploads/2024/05/RS12961_Menu_Planner_Entree_Salads_Interactive_F_LowRes.pdf' link_target='_blank' size='large' position='center' color='black' custom_bg='#444444' custom_font='#ffffff']
    [av_textblock]
    Beef cuts in salads offer a hearty twist, bringing savoury slices of sirloin or flavourful strips of flank steak to vibrant greens and vegetables. Grilled to perfection, these cuts elevate salads, adding richness and a protein-packed punch to every bite.
    [/av_textblock]
    [/av_one_fourth]

    [av_one_fourth min_height='av-equal-height-column' vertical_alignment='av-align-top' margin='40px' margin_sync='true' padding='40px' padding_sync='true' background='bg_color' background_color='#f2f2f2']
    [av_textblock]
    <h4 style=”text-align: center;”>Kids Menu</h4>
    [/av_textblock]
    [av_image src='https://cdnbeefperforms.ca/wp-content/uploads/2024/05/CDNB_Culinary_Planner_Kids_Menu_Interactive_F-pdf-796x1030.jpg' attachment='25507' attachment_size='large' align='center' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='fade-in']
    [/av_image]
    [av_button label='View Now' link='manually,https://cdnbeefperforms.ca/wp-content/uploads/2024/05/RS12961_Menu_Planner_Kids_Menu_Interactive_F_LowRes.pdf' link_target='_blank' size='large' position='center' color='black' custom_bg='#444444' custom_font='#ffffff']
    [av_textblock]
    A kids menu featuring beef cuts offers tasty and nutritious options that cater to young tastes. These meals aim to please young palates while delivering essential protein and nutrients for their growth.
    [/av_textblock]
    [/av_one_fourth]

    [av_one_fourth min_height='av-equal-height-column' vertical_alignment='av-align-top' margin='40px' margin_sync='true' padding='40px' padding_sync='true' background='bg_color' background_color='#f2f2f2']
    [av_textblock]
    <h4 style=”text-align: center;”>Entrées</h4>
    [/av_textblock]
    [av_image src='https://cdnbeefperforms.ca/wp-content/uploads/2024/05/CDNB_Culinary_Planner_Entree_Classics_Interactive_F-pdf-796x1030.jpg' attachment='25509' attachment_size='large' align='center' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='fade-in']
    [/av_image]
    [av_button label='View Now' link='manually,https://cdnbeefperforms.ca/wp-content/uploads/2024/05/RS12961_Menu_Planner_Entree_Classics_Interactive_F_LowRes.pdf' link_target='_blank' size='large' position='center' color='black' custom_bg='#444444' custom_font='#ffffff']
    [av_textblock]
    Beef cuts can be utilized to create a variety of delicious entrée classics that are sure to satisfy any meat lover’s palate. The possibilities for creating delicious entrée classics are endless.
    [/av_textblock]
    [/av_one_fourth]

    [av_one_fourth min_height='av-equal-height-column' vertical_alignment='av-align-top' margin='40px' margin_sync='true' padding='40px' padding_sync='true' background='bg_color' background_color='#f2f2f2']
    [av_textblock]
    <h4 style=”text-align: center;”>Senior Living</h4>
    [/av_textblock]
    [av_image src='https://cdnbeefperforms.ca/wp-content/uploads/2024/05/CDNB_Culinary_Planner_Senior_Living_Interactive_F-pdf-796x1030.jpg' attachment='25511' attachment_size='large' align='center' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='fade-in']
    [/av_image]
    [av_button label='View Now' link='manually,https://cdnbeefperforms.ca/wp-content/uploads/2024/05/RS12961_Menu_Planner_Senior_Living_Interactive_F_LowRes.pdf' link_target='_blank' size='large' position='center' color='black' custom_bg='#444444' custom_font='#ffffff']
    [av_textblock]
    Entrées for seniors using beef cuts offer a wide range of options that are both nutritious and appetizing. These entrees can provide the necessary nutrients for seniors while catering to their specific dietary needs and preferences.
    [/av_textblock]
    [/av_one_fourth]

    [/av_section]

    [av_section min_height='custom' min_height_pc='25' min_height_px='300px' padding='default' custom_margin='0px' custom_margin_sync='true' color='main_color' background='bg_color' custom_bg='#f2f2f2' src='https://cdnbeefperforms.ca/wp-content/uploads/2023/12/RS12752_RS11619_Tuscan-inspired-Grilled-Steak-1500x430.jpg' attachment='25111' attachment_size='featured' attach='scroll' position='center right' repeat='stretch' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.5' overlay_color='#000000' shadow='no-border-styling' bottom_border='no-border-styling']

    [av_one_half first vertical_alignment='av-align-middle' space='3']
    [av_heading heading='VIDEO' tag='h1' style='blockquote modern-quote modern-centered' subheading_active='subheading_below' color='custom-color-heading' custom_font='#ffffff' padding='10']
    <div style=”font-size:24px;”>CANADA PRIME GRADE BEEF</div><div style=”font-size:24px;padding-top:10px;”>MASTER CHEF</div>
    [/av_heading]
    [/av_one_half]

    [av_one_half]
    [av_textblock]
    <div style=”border:solid 5px #f5f7f7; padding: 56.25% 0 0 0; position: relative;”>
    <iframe style=”position: absolute; top: 0; left: 0; width: 100%; height: 100%;” title=”Canada Prime Grade Beef – Master Chef” src=”https://player.vimeo.com/video/1074398616?badge=0&autopause=0&player_id=0&app_id=58479&#8243; frameborder=”0″></iframe>
    </div>
    [/av_textblock]
    [/av_one_half]

    [/av_section]

    [av_section padding='default' custom_margin='0px' custom_margin_sync='true' color='main_color' background='bg_color' custom_bg='#f2f2f2' shadow='no-border-styling' bottom_border='no-border-styling']

    [av_two_fifth first margin='0px' margin_sync='true' padding='40px' padding_sync='true' background='bg_color' background_color='#f2f2f2']
    [av_image src='https://cdnbeefperforms.ca/wp-content/uploads/2024/03/RS12896_9582_2024_CB_Foodservice_Merch_Poster_F-1-pdf-scaled.jpg' attachment='25327' attachment_size='full' align='center' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='fade-in']
    [/av_image]
    [av_button label='View PDF' link='manually,https://cdnbeefperforms.ca/wp-content/uploads/2024/03/RS12896_9582_2024_CB_Foodservice_Merch_Poster_F-1.pdf' link_target='_blank' size='large' position='center' color='black' custom_bg='#444444' custom_font='#ffffff']
    [/av_two_fifth]

    [av_three_fifth margin='0px' margin_sync='true' padding='40px' padding_sync='true' background='bg_color' background_color='#f2f2f2']
    [av_textblock]
    <h4 style=”text-align: center;”>Foodservice Beef Merchandising Guide Poster</h4>
    [/av_textblock]
    [av_textblock]
    <p style=”text-align: center;”>Educate your front and back of house staff about the versatility of Canadian Beef with the new Foodservice Merchandising Poster, powered by the Canadian Beef Information Gateway. Users can scan QR codes to learn how to merchandise each foodservice-specific beef subprimal through videos, photographs, and more. Each subprimal also has product specifications to ensure informed purchasing, and commercial recipes to inspire your team to do more with Canadian Beef. Users can also access information about the Canadian Beef Advantage, including our gate-to-plate virtual tours, enabling further discussions about the unique qualities of Canadian Beef to customers.</p>
    [/av_textblock]
    [av_textblock]
    [gravityform id=”39″ title=”true” description=”false” ajax=”true”]
    [/av_textblock]
    [/av_three_fifth]

    [/av_section]

    #1493569

    Hey a10plus,

    It’s likely due to the CSS you have added in Quick CSS:

    .faq-title h4 {
      margin: 0px !important;
      font-size: 16px !important;
      line-height: 22px !important;
      padding: 0 !important;
      color: #000000;
      font-weight: normal;
    
    h1{
    text-transform: none !important;
    }

    You need a closing curly bracket after the first block.

    Best regards,
    Rikard

    #1492704

    well – for the size i see in your merged styles :

    #top #wrap_all .av-inherit-size .av-special-heading-tag {
      font-size: 1em;
    }

    because it is the merged version i do not see – if it is a quick css made rule.

    f.e. for the heading “NOTRE ENGAGEMENT” inside color-section : #engagement
    these rulesets are made inline ( inside the element options ) ( they are listed in a post-….css file )

    .avia-section.av-2ah6ew-59724389008986c8623645d2779db077 {
      background-color: #0984a9;
      background-image: unset;
    }
    
    #top #wrap_all .av-special-heading.av-ma6kesg8-158f508a9a89994cebab9c80a4c731f0 .av-special-heading-tag {
      font-size: 40px;
    }

    for the heading “ACTUALITÉ” inside color-section : #actualite this is not done.
    so the standard property is used:

    .main_color {
      background-color: var(--enfold-main-color-bg);
    }

    and this is for your page #fff

    #1492555

    Hey Angelo,

    Thank you for the inquiry.

    Try to add this code to the functions.php file to insert a go back button inside the header container.

    
    add_action( 'ava_main_header', 'ava_main_header_mod' );
    function ava_main_header_mod() {
        ?>
        <div class="ava-go-back-wrapper">
            <a href="javascript:history.back();" class="ava-go-back-button">Go Back</a>
        </div>
    
        <style>
            .ava-go-back-wrapper {
                display: none;
                justify-content: center;
                align-items: center;
                padding: 10px 0;
            }
            .ava-go-back-button {
                display: inline-block;
                padding: 8px 16px;
                background-color: #333;
                color: #fff;
                text-decoration: none;
                border-radius: 4px;
                font-size: 14px;
            }
            @media (max-width: 768px) {
                .ava-go-back-wrapper {
                    display: flex;
                }
            }
        </style>
    
        <script>
            function closeBurgerMenu() {
                const burgerBtn = document.querySelector('.av-burger-menu-main .av-hamburger.av-js-hamburger');
                const overlay = document.querySelector('.av-burger-overlay');
                if (burgerBtn && burgerBtn.classList.contains('is-active')) {
                    burgerBtn.classList.remove('is-active');
                }
                if (overlay) {
                    overlay.style.display = 'none';
                    overlay.style.opacity = '0';
                }
            }
    
            document.addEventListener('DOMContentLoaded', function() {
                closeBurgerMenu();
    
                const goBackBtn = document.querySelector('.ava-go-back-button');
                if (goBackBtn) {
                    goBackBtn.addEventListener('click', function(e) {
                        e.stopPropagation();
                        closeBurgerMenu();
                        setTimeout(function() {
                            history.back();
                        }, 50);
                    });
                }
            });
    
            window.addEventListener('pageshow', function(event) {
                if (event.persisted) {
                    closeBurgerMenu();
                }
            });
        </script>
        <?php
    }
    

    Best regards,
    Ismael

    #1492509

    Hi,

    Sorry for the delay. Since removing the br tags also removes the list items, we used this css in the style.css file to hide the line breaks and display the list as a standard bullet list.

    .av-masonry-entry-content ul br {
        display: none;
    }
    
    .av-masonry-entry-content ul li {
        padding-left: 10px;
    	position: relative;
    }
    
    .av-masonry-entry-content ul li:before {
        content: "•";
        position: absolute;
        left: 0;
        top: 5px;
        font-size: 1em;
        line-height: 1;
    }

    Please check the private field for the screenshot.

    faIfPXs.md.png

    Best regards,
    Ismael

    #1492439

    Hi,

    Thank you for the link.

    Did you add this css code?

    #top .fullsize .template-blog .post-title {
        text-align: left;
        font-size: 48px;
    }

    Try to override the font size with this code:

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      #top .fullsize .template-blog .post-title {
        font-size: 16px;
      }
    }

    Best regards,
    Ismael

    #1492300

    File 2025-12-09 09.24.33 mobile post huge.png shows H1 in a post on mobile. Too huge!

    The General Styling > Typography tab has settings for font styling. H1 is set the same font sizes as H2, yet it’s huge on mobile posts.

    #1492266
    Sandy
    Participant

    Fonts on mobile are larger than fonts on other devices. Also, post fonts are larger than page fonts on mobile. Is this normal?

    The General Styling > Typography tab has settings for font styling. Not sure why these only seem to work on desktop.

    The biggest problem is post fonts H1, H2, and H3 on mobile. They are far too large and get cut off. Please advise on how to set those font sizes specifically.

    #1492236

    Hey condonp,

    Thank you for the inquiry.

    This is possible but it will require some custom html and some css modifications. You can start with the following code:

    <div class="av-custom-testimonial">
      <div class="av-testimonial-card">
        
        <div class="av-testimonial-left">
          <h3 class="av-testimonial-heading">What our clients say</h3>
          <div class="av-testimonial-stars"></div>
          <p class="av-testimonial-text">“Your testimonial text goes here.”</p>
          <div class="av-testimonial-client">Client Name</div>
          <div class="av-testimonial-client-meta">Client Title</div>
        </div>
    
        <div class="av-testimonial-right">
          <div class="av-image-wrap">
            <img src="image.jpg" alt="">
          </div>
        </div>
      </div>
    </div>
    
    

    Then add this code in the Quick CSS field:

    .av-custom-testimonial .av-testimonial-card {
      display: grid;
      grid-template-columns: 1fr 220px;
      gap: 24px;
      background: #fff;
      padding: 20px;
      border-radius: 16px;
      box-shadow: 0 6px 20px rgba(16, 24, 40, 0.08);
      max-width: 880px;
      align-items: stretch;
    }
    
    .av-custom-testimonial .av-testimonial-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 6px 0;
    }
    
    .av-custom-testimonial .av-testimonial-heading {
      font-size: 1.25rem;
      line-height: 1.1;
      font-weight: 700;
      color: #0f172a;
      margin: 0 0 10px 0;
      display: inline-block;
      width: 50%;
    }
    
    .av-custom-testimonial .av-testimonial-stars {
      display: inline-flex;
      gap: 6px;
      align-items: center;
      margin-bottom: 12px;
    }
    
    .av-custom-testimonial .av-testimonial-text {
      font-size: 0.98rem;
      color: #6b7280;
      margin-bottom: 14px;
    }
    
    .av-custom-testimonial .av-testimonial-client {
      font-weight: 600;
      font-size: 0.95rem;
      color: #08121a;
    }
    
    .av-custom-testimonial .av-testimonial-client-meta {
      font-size: 0.85rem;
      color: #6b7280;
      margin-top: 4px;
    }
    
    .av-custom-testimonial .av-testimonial-right {
      position: relative;
      min-height: 220px;
      overflow: visible;
    }
    
    .av-custom-testimonial .av-image-wrap {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 160px;
      height: 280px;
      overflow: hidden;
      border-top-left-radius: 140px 72px;
      border-bottom-left-radius: 24px;
      border-bottom-right-radius: 12px;
      border-top-right-radius: 12px;
      background: #f3f4f6;
    }
    
    .av-custom-testimonial .av-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    
    @media (max-width: 760px) {
      .av-custom-testimonial .av-testimonial-card {
        grid-template-columns: 1fr;
      }
    
      .av-custom-testimonial .av-image-wrap {
        position: relative;
        width: 100%;
        height: 220px;
        border-top-left-radius: 48px 26px;
      }
    
      .av-custom-testimonial .av-testimonial-right {
        min-height: auto;
      }
    
      .av-custom-testimonial .av-testimonial-heading {
        width: 70%;
      }
    }
    

    Best regards,
    Ismael

    #1492231
    lara666
    Participant

    Hi Kresi team,

    On my portfolio page, I’m using a portfolio grid and the breadcrumbs are currently aligned to the left.

    Is there a way to center them and match the font size of the paragraph above?

    Please see the page link in the private content section.

    Thank you!

    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

    #1492026

    Hi,

    Thank you for the update.

    If you want to create it manually using html, try to add this code in a text or code block element:

    
    <div class="av-logo-row">
    <div class="av-logo-item">
        <img src="logo1.png" alt="Logo 1">
        <span>Text 1</span></div>
    <div class="av-logo-item">
        <img src="logo2.png" alt="Logo 2">
        <span>Text 2</span></div>
    <div class="av-logo-item">
        <img src="logo3.png" alt="Logo 3">
        <span>Text 3</span></div>
    <div class="av-logo-item">
        <img src="logo4.png" alt="Logo 4">
        <span>Text 4</span></div>
    <div class="av-logo-item">
        <img src="logo5.png" alt="Logo 5">
        <span>Text 5</span></div>
    <div class="av-logo-item">
        <img src="logo6.png" alt="Logo 6">
        <span>Text 6</span></div>
    <div class="av-logo-item">
        <img src="logo7.png" alt="Logo 7">
        <span>Text 7</span></div>
    <div class="av-logo-item">
        <img src="logo8.png" alt="Logo 8">
        <span>Text 8</span></div>
    <div class="av-logo-item">
        <img src="logo9.png" alt="Logo 9">
        <span>Text 9</span></div>
    </div>
    

    Then use this css:

    .av-logo-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 20px;
    }
    
    .av-logo-item {
      flex: 1 1 calc(100% / 9 - 20px);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-bottom: 20px;
    }
    
    .av-logo-item img {
      width: 40px;
      height: 40px;
      margin-bottom: 8px;
    }
    
    .av-logo-item span {
      font-size: 14px;
      color: #333;
    }
    
    @media (max-width: 1024px) {
      .av-logo-item {
        flex: 1 1 calc(33.333% - 20px);
      }
    }
    
    @media (max-width: 600px) {
      .av-logo-item {
        flex: 1 1 100%;
      }
    }

    Best regards,
    Ismael

    #1491941

    In reply to: Arrow above sub menu

    if you would like to have it always visible just remove the hover pseudo-class:

    here is the solution for sub-menu

    #top .menu-item-has-children:hover:before {
      position: absolute;
      top: auto;
      bottom: -4px;
      left: 20px;
      display:   block;
      content: "\e886";
      font-size: 36px;
      line-height: 24px;
      font-family: 'entypo-fontello';
      color: inherit;
    }
    #1491937

    In reply to: Arrow above sub menu

    there is no extra class on top-level menu-item if a sub-menu is open. So this is probably only usable for modern browsers.
    Maybe a solution to bring an extra class to top-level menu-item via script seems to be better.

    try:

    #top .menu-item-has-children > a {
      display: flex;
      justify-content: center;
    }
    
    #top .menu-item-has-children > a:hover:after,
    #top .current_page_item.menu-item-has-children > a:after,
    #top .menu-item-has-children:has(ul.sub-menu[style*="visible"]) > a:after {
      position: absolute;
      top: auto;
      bottom: -4px;
      display:   block;
      content: "\e886";
      font-size: 36px;
      line-height: 24px;
      font-family: 'entypo-fontello';
      color: var(--enfold-main-color-primary);
    }
    

    see here on “our clinic” menu-item: https://basis.webers-testseite.de/

    #1491888

    if you like to have the pipes between the links:
    adjust the new switch point when the links goto a twoliner:

    @media only screen and (max-width: 467px) {
      #header {
        height: 160px !important;
        max-height: 160px !important;
      }
      .responsive.html_header_top.html_mobile_menu_tablet  #top #main {
        padding-top: 160px !important;
      }
    } 

    and for phone-info:

    /******  styling the phone-info links with pipe separator  *************/
    #top #header_meta .phone-info {
      display: flex;
      flex-flow: row wrap;
      gap: 0 40px; 
    }
    
    #top #header_meta .phone-info a {
      flex:  1 1 auto;
      position: relative;
    }
    
    #top #header_meta .phone-info a:not(:last-child)::after {
      content: '|';
      font-size: 18px;
      position: absolute;
      right: -24px; 
      color: #FFF;
    }
    
    #1491821

    Hi,


    @Eleina_Shinn
    : Try to use this html in the phone number field:

    
    <div style="display:flex;align-items:center;gap:20px;">
    <div style="display:flex;align-items:center;gap:6px;">[av_font_icon icon='phone' font='svg_entypo-fontello' size='13px' position='left' av_uid='av-mifjh9cz' sc_version='1.0'][/av_font_icon] 941-462-9082</div>
    <div style="display:flex;align-items:center;gap:6px;">[av_font_icon icon='ue805' font='entypo-fontello' size='13px' position='left' av_uid='av-emailicon' sc_version='1.0'][/av_font_icon]  (Email address hidden if logged out) </div>
    </div>
    

    Please don’t hesitate to open another thread if you need additional assistance.

    Best regards,
    Ismael

    #1491685

    Hi.

    I appreciate your contributions to this thread.

    At this point the titles on my posts are laughably small. https://tinyurl.com/2coyjhvr

    I changed the h3 tag setting you had from 9px to default and then to 20px and it will not adjust.

    I’m wondering where else you are modifying the font size besides here: https://tinyurl.com/287ze3kt

    https://tinyurl.com/2yrayqjf

    Please reply and advise,

    #1491585

    HI

    Thank you for the reply.

    An example page is my latest post here: https://blgenvironmental.com/sustainable-landscape-design-orlando/.

    Note: Changing the H3 Tag does not affect the page here. I set it for 9px as a visual test for each screen setting. I am developing in Firefox on a desktop. https://tinyurl.com/29nlpg6v

    The default says that it is 20px. I can visually tell by eyeballing the h2 tag and te h3 tag right underneath that these are both the same font size and not 28 px h2 and 20 px h3 respectively. https://tinyurl.com/24jgxgok

    I’m resetting the h3 back to default after the test. Can you please enter the dashboard with the info that I provided at the outset of this ticket?

    This setting also does not have an affect: https://tinyurl.com/2ycxfogv

    Side note: I do not see the panel for font position: left, right, center, justify. Everything appears to be set to justify somewhere.

    • This reply was modified 2 months ago by kurson.
    #1491551

    Hi,

    Thank you for the info.

    The site is broken because there is an invalid css rule in the Quick CSS field — a closing curly brace is missing.

    /* -- Change font size in Main Menu Bar -- */
    #header_main .avia-menu-text {
        font-size: 17px;
    

    We corrected the css code and set the Maximum Container Width to 1310px. The site should be displaying correctly now.

    Screenshot-2025-11-20-at-1-57-03-PM

    Best regards,
    Ismael

    #1491531
    Kelly Erickson
    Participant

    Hi there! It’s been a while but I’m back with some more issues regarding the centering of shortcode icons in an Avia text box, along with another issue with adding a custom fontello icon.

    I will note: with all of these issues, I’ve cleared cache on the website, on my browser, used incognito windows and other browsers to cross check and troubleshoot.

    Overview: I’ve uploaded an IMDB Fontello Icon as outlined in the Enfold documentation. I want to be able to use this icon in both the header & socket as well as within the Shortcode Icons options to use on pages within the site using the text block editor.

    I have inserted the following CSS in the Quick CSS theme options section:

    #top .av_textblock_section .av_font_icon {
        display: inline-block;
        float: none;
    }

    Issue #1 with a custom fontello icon:
    When using in a standard text box and inserting the icons using shortcode, the icons do center align but they are staggered (the custom icon is lower than the Instagram icon that is already in there). See the link in the Private Content and scroll down to the bottom to see the result of that.

    Issue #2:
    Header & footer icons are also misaligned, see screenshot link below.
    As a result of changing the size of the icons in the header and footer as well, the mouseovers are off (on the Instagram specifically, the circle mouseover is not centering around the icon). Best way to see this is in the live link I’ve provided as well as the screenshots in the Private Content!

    Thank so much in advance!

    #1491491

    Hi,

    The font size of the heading elements for different screen sizes can also be adjusted in Enfold > General Styling > Typography as shown in the screenshot below.

    Screenshot-2025-11-19-at-12-41-59-PM

    Best regards,
    Ismael

    #1491488
    kurson
    Participant

    My Enfold post font size and position look terrible to the client. The H2 and H3 tags look the same size, everything is justified. They would like to know where to edit this to be font position left. Or at least have the controls. The GUI controls under Advanced Styling do not seem to work. Adding custom css does not override,’

    Please instruct me on how to edit each H tag from1 to 6 in font size and the option to change from justify to position left for each element including main text font.

    #1491486
    placeit53591
    Participant

    The font sizes for the <H1> and <H2> tags are much too large for my taste on a smartphone. How can I make them smaller without changing the font sizes for the computer screen?

Viewing 30 results - 1 through 30 (of 18,700 total)