Viewing 30 results - 211 through 240 (of 18,701 total)
  • Author
    Search Results
  • #1481898

    Hey es.design.ma,

    Thank you for the inquiry.

    You can use this css code to adjust the size of the slider arrows:

    #top .av-slideshow-ui .avia-slideshow-arrows.av-visible-prev > a.prev-slide, #top .av-slideshow-ui .avia-slideshow-arrows.av-visible-next > a.next-slide {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 16px;
        top: 50%;
        margin: -30px 15px 0;
    }
    
    #top .avia-slideshow-arrows a.avia-svg-icon svg:first-child {
        margin-top: 0;
        height: 0.5em;
        width: 0.5em;
    }

    Best regards,
    Ismael

    #1481891

    on https://kriesi.at/support/topic/center-logo-with-burger-icon-on-right/#post-1481879 it is the setting now.
    change font-size to 36px or something else.

    #top #wrap_all #av-burger-menu-ul li {
      font-size: 36px !important;
    }
    #1481882

    I also added the burger menu font size, but it didn’t make the font smaller on mobile.

    #1481879

    font-size is now on :

    #top #wrap_all #av-burger-menu-ul li {
      font-size: 40px;
    }

    just change that value

    #1481876

    And do you know how I can adjust the Burger menu font size? It seems a little big.

    #1481777

    Hi,

    Thank you for the info.

    Instead of using the icon shortcode, we replaced it with the search icon html.

    <span class="av_font_icon av-m9s1gr1e-6ed42716956a76916230d7da2b2f0695 avia_animate_when_visible av-icon-style- avia-icon-pos-left avia-iconfont avia-font-entypo-fontello av-no-color avia-icon-animate avia_start_animation avia_start_delayed_animation"><span class="av-icon-char" data-av_icon="" data-av_iconfont="entypo-fontello" aria-hidden="true"></span></span>
    

    We also added this css code to adjust the position and size of the icon in the menu.

    .menu-item .av_font_icon {
        float: none;
        margin-right: 0;
        font-size: 16px;
    }

    View post on imgur.com

    Best regards,
    Ismael

    #1481694

    Hey schweg33,

    Thank you for the inquiry.

    In the Navigation Label field of the search menu item, you can replace the text with the icon shortcode or an icon image.

    [av_font_icon icon='search' font='svg_entypo-fontello' style='' caption='' size='40px' position='left' color='' link='' link_dynamic='' linktarget='' title_attr='' sonar_effect_effect='' sonar_effect_color='' sonar_effect_duration='1' sonar_effect_scale='' sonar_effect_opac='0.5' animation='' id='' custom_class='' template_class='' element_template='' one_element_template='' av_uid='av-m9qks9nw' sc_version='1.0' admin_preview_bg=''][/av_font_icon]
    

    Best regards,
    Ismael

    #1481683

    Hello,

    Any reason this isn’t included in the latest theme udpate?

    To fix this icon in all places (Login, Checkout, My Account > Account Details, etc.) and make it look and function like it should (centered, color changing, and character input doesn’t overlap), I recommend this code, which basically pulls in a simplified version of the official WooCommerce layout stylesheet:

    .woocommerce form .password-input {
    	display: flex;
    	flex-direction: column;
    	justify-content: center;
    	position: relative
    }
    .woocommerce form .password-input input {
    	padding-right: 2.5rem !important;
    	margin-bottom: 0;
    }
    .woocommerce form .password-input input::-ms-reveal {
    	display: none
    }
    .woocommerce form .show-password-input {
    	background: transparent;
    	border: 0;
    	color: #222;
    	cursor: pointer;
    	font-size: inherit;
    	padding: 0;
    	position: absolute;
    	right: .7em;
    	top: 50%;
    	transform: translateY(-50%);
    }
    .woocommerce form .show-password-input.display-password {
    	color: #999
    }
    .woocommerce form .show-password-input::after {
    	font-family: WooCommerce;
    	speak: never;
    	-webkit-font-smoothing: antialiased;
    	content: "\e010";
    	margin-top: -2px;
    	vertical-align: middle;
    	display: inline-block
    }
    #1481565

    Hi,

    Thank you for the update.

    Try to add this css code to further decrease the font size of the elements in the top bar and adjust its height.

    @media only screen and (max-width: 768px) {
    
      /* Add your Mobile Styles here */
      #top #header_meta a,
      #top #header_meta li,
      #top #header_meta .phone-info {
        font-size: 13px;
      }
    
      #top #header_meta .phone-info {
        padding: 0;
        margin: 0;
      }
    
      #top #header_meta .sub_menu {
        line-height: 16px;
      }
    }

    View post on imgur.com

    Best regards,
    Ismael

    #1481459

    As I said, as a participant I cannot see your private message area, so I cannot see a link if it has been posted. The link would be necessary for verification – because a screenshot is not meaningful enough to give advice.

    if that is your css – the

    @media only screen and (max-width: 768px) {
    

    is nested with a nother media query.
    your :

        @media only screen and (max-width:767px) {
            .responsive #top #header_main > .container .main_menu .av-main-nav > li > a {
                padding-left: 0;
            }
        }

    is inside another media query ( with the same settings )

    next hint:
    use for the max-width media query the odd setting – and for min-width the even ones.

    I don’t know if the above leads to conflicts, but put this as code instead:

    
    @media only screen and (max-width: 767px) {
        /* Add your Mobile Styles here */
        .responsive #header_main_alternate {
            display: block;
        }
    
        .responsive #top #header .main_menu {
            width: auto !important;
        }
    
        #header_meta .phone-info-custom::before {
            background-color: #ffffff !important;
        }
        .responsive #top #wrap_all .main_menu {
            left: 0px !important;
        }
        .responsive #top .logo {
            width: 50% !important;
        }
    
        .responsive #top #wrap_all .container {
            float: right !important;
        }
    
        #header_meta .phone-info-custom {
            font-size: 15px;
            font-weight: 800;
            color: #000000;
            padding-top: 70px;
        }
        #header_meta .container {
            max-width: 50% ;
            margin-left: 0px;
            margin-right: 0px !important;
            padding-left: 0px !important;
            padding-right: 0px !important;
        }
    
        /*PHONE INFO*/
        #header_meta .phone-info-custom::before {
            display: none !important;
        }
        .phone-info {
            padding-top: 5px !important;
        }
    
        /*LOGO*/
        .responsive .logo img {
            float: right !important;
        }
    
        .responsive #top .logo {
            position: static;
            display: table;
            height: 80px!important;
            float: none;
            padding: 0;
            border: none;
            width: 95%;
        }
        .main_menu {
            margin-left: 0px !important;
        }
        a {
            padding-left: 0px !important;
        }
    
        .responsive #top #header_main > .container .main_menu .av-main-nav > li > a {
            padding-left: 0;
        }
    }
    
    /* 💻 TABLETTE (entre 769px et 1024px) */
    @media only screen and (min-width:768px) and (max-width:989px) {
        .responsive #top #wrap_all .av_mobile_menu_tablet .main_menu {
            left: 0 !important;
        }
    }
    #1481437

    Hi Guenni007,

    It’s not about shrinking header the problem now, it is about the CSS codes for mobile and tablets which is not applied on my site, I don’t understand what happen ?

    I added several CSS codes for mobile and tablets but they are not taken into account:

    /* 📱 MOBILE (jusqu'à 768px) */
    
    @media only screen and (max-width: 768px) {
    
      /* Add your Mobile Styles here */
      .responsive #header_main_alternate {
        display: block;
      }
    
      .responsive #top #header .main_menu {
        width: auto !important;
      }
    
      #header_meta .phone-info-custom::before {
        background-color: #ffffff !important;
      }
        .responsive #top #wrap_all .main_menu {
            left: 0px !important;
        }
        .responsive #top .logo {
            width: 50% !important;
        }
    
    .responsive #top #wrap_all .container {
        float: right !important;
    }
    
    #header_meta .phone-info-custom {
        font-size: 15px;
        font-weight: 800;
        color: #000000;
        padding-top: 70px;
    }
    #header_meta .container {
         max-width: 50% ;
        margin-left: 0px;
        margin-right: 0px !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    
    /*PHONE INFO*/
    #header_meta .phone-info-custom::before {
      display: none !important;
    }
    .phone-info {
        padding-top: 5px !important;
    }
    
    /*LOGO*/
    .responsive .logo img {
        float: right !important;
    }
    
        .responsive #top .logo {
            position: static;
            display: table;
            height: 80px!important;
            float: none;
            padding: 0;
            border: none;
            width: 95%;
    }
    .main_menu {
        margin-left: 0px !important;
    }
    a {
        padding-left: 0px !important;
    }
    @media only screen and (max-width:767px) {
        .responsive #top #header_main > .container .main_menu .av-main-nav > li > a {
            padding-left: 0;
        }
    }}
    
    /* 💻 TABLETTE (entre 769px et 1024px) */
    @media only screen and (min-width:768px) and (max-width:989px) {
        .responsive #top #wrap_all .av_mobile_menu_tablet .main_menu {
            left: 0 !important;
        }
    }

    Capture d’écran 2025 04 16 à 12.27.29
    Capture d’écran 2025 04 16 à 12.27.39

    #1481426
    Guenni007
    Participant

    I am currently working on a fluid setting for the font-size settings using the above filter. What exactly is the difference between
    –enfold-font-size-theme-content and –enfold-font-size-content-font ?

    #1481422
    Jakob Schmitt
    Guest

    These dreprecated notices are spamming my logs. Please fix them. I am usings the latest Enfold Theme version 7.1 with PHP version 8.4.5:

    Deprecated: aviaFrameworkwidgetsavia_instagram_widget::update_cache(): Implicitly marking parameter $cache as nullable is deprecated, the explicit nullable type must be used instead in /var/www/httpdocs/wp-content/themes/enfold/framework/php/widgets/widget-classes/class-avia-instagram.php on line 204

    Deprecated: aviaBuilderbaseaviaElementStylingBase::__construct(): Implicitly marking parameter $shortcode as nullable is deprecated, the explicit nullable type must be used instead in /var/www/httpdocs/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-element-styling-base.php on line 144

    Deprecated: aviaBuilderbaseaviaElementStylingRules::__construct(): Implicitly marking parameter $shortcode as nullable is deprecated, the explicit nullable type must be used instead in /var/www/httpdocs/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-element-styling-rules.php on line 35

    Deprecated: aviaBuilderbaseaviaElementStylingResponsive::__construct(): Implicitly marking parameter $shortcode as nullable is deprecated, the explicit nullable type must be used instead in /var/www/httpdocs/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-element-styling-responsive.php on line 42

    Deprecated: aviaBuilderbaseaviaElementStylingResponsive::add_responsive_font_sizes(): Implicitly marking parameter $sc_context as nullable is deprecated, the explicit nullable type must be used instead in /var/www/httpdocs/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-element-styling-responsive.php on line 167

    Deprecated: aviaBuilderbaseaviaElementStylingResponsive::add_responsive_styles(): Implicitly marking parameter $sc_context as nullable is deprecated, the explicit nullable type must be used instead in /var/www/httpdocs/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-element-styling-responsive.php on line 322

    Deprecated: aviaBuilderbaseaviaSubItemQueryBase::__construct(): Implicitly marking parameter $sc_context as nullable is deprecated, the explicit nullable type must be used instead in /var/www/httpdocs/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-sub-item-query-base.php on line 81

    Deprecated: aviaShortcodeTemplate::get_popup_element_by_id(): Implicitly marking parameter $source as nullable is deprecated, the explicit nullable type must be used instead in /var/www/httpdocs/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-template.php on line 465

    Deprecated: aviaElementStyling::__construct(): Implicitly marking parameter $shortcode as nullable is deprecated, the explicit nullable type must be used instead in /var/www/httpdocs/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-element-styling.php on line 21

    Deprecated: avia_masonry::__construct(): Implicitly marking parameter $sc_context as nullable is deprecated, the explicit nullable type must be used instead in /var/www/httpdocs/wp-content/themes/enfold/config-templatebuilder/avia-shortcode-helpers/class-avia-masonry.php on line 48

    Deprecated: avia_product_slider::__construct(): Implicitly marking parameter $sc_context as nullable is deprecated, the explicit nullable type must be used instead in /var/www/httpdocs/wp-content/themes/enfold/config-templatebuilder/avia-shortcode-helpers/class-avia-product-slider.php on line 48

    Deprecated: avia_slideshow::__construct(): Implicitly marking parameter $sc_context as nullable is deprecated, the explicit nullable type must be used instead in /var/www/httpdocs/wp-content/themes/enfold/config-templatebuilder/avia-shortcode-helpers/class-avia-slideshow.php on line 62

    Deprecated: avia_content_slider::__construct(): Implicitly marking parameter $sc_context as nullable is deprecated, the explicit nullable type must be used instead in /var/www/httpdocs/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contentslider/contentslider.php on line 847

    Deprecated: avia_partner_logo::__construct(): Implicitly marking parameter $sc_context as nullable is deprecated, the explicit nullable type must be used instead in /var/www/httpdocs/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/logoslider/logoslider.php on line 951

    Deprecated: avia_magazine::__construct(): Implicitly marking parameter $sc_context as nullable is deprecated, the explicit nullable type must be used instead in /var/www/httpdocs/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/magazine/magazine.php on line 695

    Deprecated: avia_accordion_slider::__construct(): Implicitly marking parameter $sc_context as nullable is deprecated, the explicit nullable type must be used instead in /var/www/httpdocs/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_accordion/slideshow_accordion.php on line 1088

    Deprecated: avia_feature_image_slider::__construct(): Implicitly marking parameter $sc_context as nullable is deprecated, the explicit nullable type must be used instead in /var/www/httpdocs/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_feature_image/slideshow_feature_image.php on line 861

    #1481376
    dorisb123
    Participant

    Question 1:
    It seems I cannot change the color of a menu item. I tried to do so at advanced styling but it did n’t work.

    Also question nr. 2:
    Are there any options to manipulate the menu (other than in appearance) as in: changing the fontsize, or keeping main menu as secondary menu always in sight.

    #1481350

    Hi,

    Yes, that should be possible. Please include this css code:

    #top .phone-info .avia-button .avia_iconbox_title {
        font-size: 12px;
    }

    Best regards,
    Ismael

    #1481324

    Hi Rikard,

    Thank you – it’s betting smaller!

    Is there a way of reducing the button text without reducing the font size of the strapline to the left please?

    Thanks

    Jane

    #1481286

    Hey wesdorman,

    Thank you for the inquiry.

    There might be a slight difference between the desktop and mobile views due to their aspect ratios, especially with the background image. For the font size, make sure to define a specific size for smaller screens. We tried logging into the site, but it’s asking for .htaccess authentication. Please provide the login info in the private field.

    Best regards,
    Ismael

    #1481227

    Hey Akhurst,
    To increse the font sizes for the price, sku, & categories, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top.single-product .price span {
    	font-size: 30px;
    }
    #top.single-product .main_color .product_meta span {
    	font-size: 30px;
    }

    adjust the font size to suit.
    To remove the related products, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function remove_woo_relate_products(){
        remove_action( 'woocommerce_after_single_product_summary', 'avia_woocommerce_output_related_products', 20);
    }
    add_action('init', 'remove_woo_relate_products', 10);

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    #1481215
    akhurst_machinery
    Participant

    Hello,
    I need help …

    We need to organize the default product information on our website better.
    Especially the font sizes …

    Please see below a simple screenshot of the ideal layout.
    https://snipboard.io/ni7ITQ.jpg

    Current live webpage:

    Can you help me?

    Thank you, Leo

    #1481190

    In reply to: Tab Font Size

    hi team, the yigit css works for the tab heading, any css for the tab content font size ?

    #1481160

    Hi,
    I added this css:

    .category .title_container h1 a {
    font-size: 300%!important;
    line-height: 55px;
    font-family: "sacramento", cursive;
    font-weight: 400;
    }

    and this code to your to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
      <script>
    (function($){
      $('#top.category .title_container h1.main-title.entry-title  a').contents().filter(function() {
        return this.nodeType == 3
      }).each(function(){
        this.textContent = this.textContent.replace('Archive for category:','');
        this.textContent = this.textContent.replace('Tag Archive for:','');
        this.textContent = this.textContent.replace('Archive for:','');
      });
      })(jQuery);
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_script', 99 );	  

    the result now:
    Screen Shot 2025 04 10 at 4.20.36 PM
    Please clear your browser cache and check.

    Best regards,
    Mike

    #1481111

    Hi,

    Thank you for the update.

    You can use this css code to adjust the style of the pagination:

    #top .pagination .current, #top .pagination a, #top .fullsize .template-blog .pagination a {
        height: 50px;
        width: 50px;
        line-height: 50px;
        margin-right: 6px;
        box-shadow: 0px 0px 1px 0px rgba(0,0,0,0.2);
        font-size: 18px;
    }
    
    #top .main_color .pagination a {
        background-color: #f2f1ef;
        color: #000000;
    }
    
    #top .main_color .pagination .current {
        background-color: #d5d5d5;
    }
    

    Best regards,
    Ismael

    #1481104

    Hi,
    I disabled your Enfold Theme Options ▸ Header ▸ Header Layout ▸ Header Title and Breadcrumbs ▸ Display only title and added this to your code to the end of your child theme functions.php file in Appearance ▸ Editor:

    add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 50, 1);
    function avf_header_setting_filter_mod($header_settings) {
        if (is_tax() || is_archive()) {
            $header_settings['header_title_bar'] = "title_bar";
        }
        return $header_settings;
    }

    to only show the title on your category pages.
    and I added this css:

    .category .container_wrap_first {
    	border: none;
    }
    .category .title_container {
    	text-align: center;
    	padding-top: 50px;
    	background-color: #f2f0eb !important;
    }
    .category .title_container h1 a {
    	font-weight: 600 !important;
    	line-height: 1.3em;
    	font-size: 30px;
    }

    so compared to one of you posts:
    Screen Shot 2025 04 09 at 5.23.29 PM
    your category title looks like this:
    Screen Shot 2025 04 09 at 5.25.07 PM
    But note that they are both H1, I don’t see H2 like you asked.

    Best regards,
    Mike

    #1480949
    Sandy
    Participant

    The shortcode button hyperlink does not work. The buttons look nice but do not load the referenced URL.

    The shortcode (with URL placeholder text) is:
    [av_button label='ALL ISSUES' link='manually,http://' link_target='https://theURL' size='medium' position='left' icon_select='no' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff' av_uid='av-5obiu2i']

    I’ve tried these steps too, but still no success:
    – Disable “merging and compression” for CSS and JS files from Enfold > Performance.
    – If a caching plugin is installed check the plugin settings and clear the cache..
    – Hard refresh by pressing Ctrl + Shift + F5 on your browser or press the F12 key to open chrome dev tools and right click on the refresh button and select “Empty Cache and Hard Reload”.

    #1480907

    Hi,

    Thank you for the update.

    We temporarily disabled the Enfold > Performance > File Compression settings and adjusted the font size of the paragraph (p) tag to 16px. It updated correctly as shown in the screenshot below.

    View post on imgur.com

    Best regards,
    Ismael

    #1480836

    Hey Rikard,

    We wanted to explore different font options for headers and adjust font sizes and weight for body and header text.

    Thank you

    #1480743

    Thank you! #2 is resolved.

    For #1, I did change the color in the Enfold > Theme Options > Transparency Options > Transparency Menu Color area and that did change the color for transparency. I have also changed the color in Advanced Styling for the default menu, but no changes are showing up. That was my main issue. You can see I have a Main Menu element in Advanced Styling with both the color (#314050) and size indicated, but no changes on the front end. Remember too my note: “Also under Advanced Styling, just like the menu font issue, changes to H2 don’t apply on the frontend.”

    Thanks!

    #1480677
    imagestudios
    Participant

    Hi, this is probably my 30th license, so I’ve been around the block with this theme and very much love it! I installed the parallax demo and for some reason am having issues/bugs in two areas:

    1) Advanced Styling:
    The Advanced Styling doesn’t appear to work. I can’t change the menu font color or size. I’ve set it as #314050 and 16pts, but it still shows white and 12 pts.
    Also under Advanced Styling, just like the menu font issue, changes to H2 don’t apply on the frontend.
    2) Another issue I have is the Headline Rotator that comes with the demo is spaced out different than the demo you guys show where each phrase reveals on a separate line and the final line is way below the first line, so there’s a gap of white space. The demo on your site doesn’t show that.

    Thanks!

    #1480651

    you have on those post-types different classes on body tag ( or #top).
    so you can differ by :
    #top.page
    #top.single-portfolio
    #top.single-post

    so try:

    .responsive #top.page  {
      font-size: 13px !important;
    }
    .responsive #top.single-post {
      font-size: 16px !important;
    }
    .responsive #top.single-portfolio  {
      font-size: 19px !important;
    }
    #1480484

    have a look to this solution for another participant:
    https://webers-testseite.de/html5-video-fanlokbun-2/

    in your case you do not need to place the column on the right side with an empty column before. That position is ruled by css only.

    see: https://webers-testseite.de/html5-video-bhe/
    your heading and text is inside that overlay column.

    PS: if you do not like that i use your video here – tell me after you have seen the demo page and i will replace it by a different video.

    PPS: the font-size-adjust property seems not to be supported by all browsers – so for very small screens you had to adjust the font-size by conventional methods

Viewing 30 results - 211 through 240 (of 18,701 total)