Viewing 30 results - 151 through 180 (of 18,737 total)
  • Author
    Search Results
  • #1487674

    In reply to: Iconbox Icon Smaller

    Hey vrhgmt744p,

    Thank you for the inquiry.

    You can use the following css code to adjust the size of the icon inside the iconbox.

    .iconbox_icon.avia-svg-icon img[is-svg-img=true], .iconbox_icon.avia-svg-icon svg:first-child {
        height: 0.5em;
        width: 0.5em;
        top: -8px;
        position: relative;
    }
    
    #top .avia-font-entypo-fontello, body .avia-font-entypo-fontello, html body [data-av_iconfont='entypo-fontello']:before {
        font-family: 'entypo-fontello';
        line-height: 1.5em;
        display: block;
        top: 0;
        position: relative;
        font-size: 0.6em;
    }

    If you need this applied to specific icons, try adding a custom css class to the element. Please refer to the documentation below.

    https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support

    Best regards,
    Ismael

    hier ein paar mehr css Setzung als du wahrscheinlich benötigst – lösche einfach was du nicht benötigst:

    #top .avia_message_box {
      /* text-align: left !important; */
      padding-top: 30px;
      hyphens: auto;
    }
    
    #top .avia_message_box p {
      text-transform: none;
      font-size: 18px;
      font-weight: 400;
      line-height: 1.5em
    }
    
    #top .avia_message_box .avia_message_box_icon svg {
      position: relative;
      width: 40px;
      height: 40px;
      margin-left: 10px;
      top: 5px;
    }
    #1487592

    you can use that ava_after_main_title hook on your choosen layout
    place this to your child-theme functions.php:

    add_action('ava_after_main_title', function() {
    	echo '<div class="main_color my_title_container">';
    	echo '<h2 class="page-title">'. get_the_title() .'</h2>';
    	echo '</div>';
    });

    change tags (espacially heading tag) to your need – and style via that extra class: my_title_container
    f.e.

    #top .main_color.my_title_container .page-title {
      font-size: var(--enfold-font-size-theme-h2) ;
      color: var(--enfold-main-color-heading);
      padding: 20px 0 5px 30px;
    }

    see: https://enfold.webers-webdesign.de/enfold-consulting/

    #1487536

    Hey icarogioiosi,

    Thank you for the inquiry.

    You can add this css code to move the title to the right of the image, position it at the top, reduce the font size, remove the borders, and add space below each portfolio entry. Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings, then purge the cache after adding the modification.

    
    #top .isotope-item.special_av_fullwidth .inner-entry {
        text-align: left;
        display: flex;
        flex-direction: row-reverse;
    }
    
    #top .grid-entry .inner-entry {
        box-shadow: none;
    }
    
    #top .isotope-item.grid-entry {
        margin-bottom: 20px;
    }
    
    #top .isotope-item.special_av_fullwidth .av_table_col .entry-title {
        margin: 0 0 20px;
        font-size: 16px;
    }
    

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    #1487504
    icarogioiosi
    Participant

    I’ve searched the online documentation and a few dozen forum posts, but I haven’t been able to find detailed portfolio settings.

    In our project, we’re using a single-column grid, as shown in the image https://img.savvyify.com/image/Portfolio.yydw6 .

    1) The title appears to the left of the image; how can we have it on the right, while also reducing the width of the white cell containing it?

    2) The title is vertically centered on the image; how can we have it at the top, while also reducing the font size?

    3) We’d like to eliminate the lines and borders and have a 10-20 pixel white space between each image.

    We’ve also tried Masonry, which solves the problem mentioned in point (3) and already has a smaller font, but the title is below the image and we don’t know if it can be “moved” to the right.

    #1487490

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

    .phone-info .avia-icon-pos-left {
        float: none;
        display: inline;
    }
    .phone-info .avia-icon-pos-left .av-icon-char {
    	font-size: 14px;
    	line-height: 18px;
    }
    .phone-info .avia-icon-pos-left.av_font_icon.av-mds9wcyi-0057de6c5f2e63955f80107ffd4df8b8 {
    	 margin-left: 10px;
    }
    #top .phone-info .avia-svg-icon.avia-font-svg_entypo-fontello svg:first-child {
        fill: #fff;
    }

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

    Best regards,
    Mike

    #1487438

    Hey vrhgmt744p,

    Thank you for the inquiry.

    You can enter these shortcodes in the phone info field.

    Phone:

    [av_font_icon icon='phone' 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='' av_uid='av-mds9v1ky' sc_version='1.0' admin_preview_bg=''][/av_font_icon]
    

    Email:

    [av_font_icon icon='ue805' font='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='' av_uid='av-mds9wcyi' sc_version='1.0' admin_preview_bg=''][/av_font_icon]
    

    Let us know the result.

    Best regards,
    Ismael

    #1487419
    pelgrimrat
    Participant

    Dear people at the forum,

    I have a question considering an icon animation on this website:

    I created buttons with a “beating heart” icon, using this code:

    .buttonpulse a.avia-button .avia_button_icon {
        top: 1px;
        margin-right: -1em;
        padding-right: 25px;
        animation: pulse 1.5s infinite;
    }
    
    @keyframes pulse {
    0% {font-size: 18px;}
    50% {font-size: 22px;}
    90% {font-size: 18px;}
    100% {font-size: 18px;}
    }

    I played around with the margin and padding so that the button itself (especiallly the border around it) doesn’t move when the heart icon is transforming.
    However, in Safari browser, the buttons are stretching horizontally when the icon increases in size. In Chrome, the buttons are staying the same, which is what I want.

    Do you know a CSS solution that will tackle Safari browsers as well?
    Thanks in advance!

    #1487258

    Only in the styles sheet. I checked the functions.php (in Child) but nothing related to icons.
    Here’s what I have on the styles.css:

    section#text-3 .avia-icon-list .iconlist_icon {
    height: 42px;
    width: 42px;
    line-height: 42px;
    font-size: 28px;
    text-align: center;
    border-radius: 500px;
    position: relative;
    float: left;
    margin-right: 30px;
    margin-left: 2px;
    z-index: 5;
    color: #fff;
    }

    section#text-3 .avia-icon-list li {
    margin: 0;
    padding: 0 0 16px 0;
    }

    section#text-3 .avia-icon-list .iconlist-timeline {left: 22px;}
    body.page-id-3453 .av_font_icon {margin-bottom: 20px;}

    #1487156

    In reply to: Aria label

    Hello Ismael,
    Unfortunately we have not the Button Title Attribute on the backed.

    If I try the shortcoce methode:
    [av_button label='Zur Anfahrtsbeschreibung' link='manually.#/anfahrt' link_target='' size='large' position='left' icon_select='yes' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff' av_uid='av-5obiu2i' title_attr='Zur Anfahrt']

    I get no arria here:

    <a href="#/anfahrt" class="avia-button avia-color-theme-color avia-icon_select-yes-left-icon avia-size-large avia-position-left " style="text-decoration: underline; outline-width: 0px; outline-color: rgb(240, 240, 241); outline-offset: 0px;"><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">Zur Anfahrtsbeschreibung</span></a>

    #1487129

    and in addition – some magic of “container-type” property and font-size adjust via cqi
    to have more legible font sizes!

    @media only screen and (max-width: 989px){
      #top .gridded-flipbox .avia-icongrid-flipback  .avia-icongrid-inner {
        padding: 20px !important;
      }
    
      #top .gridded-flipbox .avia-icongrid-flipback {
        container-type: inline-size;
      }
    
      #top .gridded-flipbox .avia-icongrid-flipback p {
        hyphens: auto;
        font-size: 9cqi;
        line-height: 1.5em
      }
    }
    #1487053

    In reply to: 2nd header area

    Hey Tilman,

    Thank you for the inquiry.

    You can add the same html in the phone info field.

    
    <div class="top-bar-content">
      <span class="content">
        <i class="fa rt-icon-placeholder2"></i> Süderquerweg 651 • 21037 Hamburg
      </span>
      <span class="content">
        <i class="fa rt-icon-telephone"></i>
        <a href="tel:+49407375020">+49 40 737 50 20</a>
      </span>
      <span class="content">
        <i class="fa rt-icon-3-time"></i> Mo. bis Fr. 7:15-18:00
      </span></div>
    

    Then, add this css code to adjust the layout of the content:

    .top-bar-content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 15px; 
    }
    
    .top-bar-content .content {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 14px; 
    }
    
    .top-bar-content i {
      font-family: "FontAwesome";
      font-style: normal;
      font-size: 16px; 
      display: inline-block;
    }

    You may need to install the FontAwesome plugin to properly display the icons.

    https://wordpress.org/plugins/font-awesome/

    Best regards,
    Ismael

    #1486970

    In reply to: Open Sans ZIP

    btw: using variable fonts can be very interesting – but there are a lot of new css declarations to know – see here a playground:
    https://variablefonts.io/about-variable-fonts/

    Wenn du also doch lieber mit einem selbstgehosteten OpenSans arbeiten möchtest. Dann sag bescheid – welche Schriftschnitte du brauchst, dann lade ich das file auch hoch.

    PPS: übrigens OpenSans ist ja noch harmlos, RobotoFlex ist ein Super Variabler Font mit mehreren Axen die bedient werden können:

    Firefox (Developer Version) hat für Schriftarten einen eigenen Reiter, an dem man herumspielen kann mit diesen Einstellungen. Wenn man dann mit dem Resultat zufrieden ist, geht man zurück zum Regelsatz, und kann sich das als css heraus kopieren:
    (das Element für das du dann rumgespielt hast, muss dann noch durch den eigentlichen Selektor ersetzt werden)

    Element {
      font-size: 140px;
      line-height: 1.1em;
      letter-spacing: 5px;
      font-weight: 612;
      font-stretch: 113%;
      font-variation-settings: "opsz" 8, "GRAD" 87;
      font-style: oblique 7.45deg;
    }
    #1486939
    elenapoliti
    Participant

    I use Accordion to show/hide a button (see example page in private content).
    I am trying to create a custom layout with some ACF custom fields. Among these the button should contain a ACF field = text (area_name) and a ACF url (the link to download a document)

    However when I add the button in the Accordion and use Dynamic Content instead of Button Label and Link settings, the button after toggling the accordion looks broken. This is the shortcode inside the accordion

    [av_button label='{acf_field_6878d372becf1:ISRA name}' icon_select='yes' icon='ue82d' font='entypo-fontello' link='manually,https://' link_dynamic='{acf_field_6878d26880177:Factsheet download link}' link_target='' size='medium' position='left' label_display='' title_attr='' size-text='20' av-desktop-font-size-text='' av-medium-font-size-text='' av-small-font-size-text='' av-mini-font-size-text='' margin='' margin_sync='true' padding='20px' padding_sync='true' av-desktop-margin='' av-desktop-margin_sync='true' av-desktop-padding='' av-desktop-padding_sync='true' av-medium-margin='' av-medium-margin_sync='true' av-medium-padding='' av-medium-padding_sync='true' av-small-margin='' av-small-margin_sync='true' av-small-padding='' av-small-padding_sync='true' av-mini-margin='' av-mini-margin_sync='true' av-mini-padding='' av-mini-padding_sync='true' color_options='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' btn_color_bg='theme-color' btn_custom_grad_direction='vertical' btn_custom_grad_1='#000000' btn_custom_grad_2='#ffffff' btn_custom_grad_3='' btn_custom_grad_opacity='0.7' btn_custom_bg='#444444' btn_color_bg_hover='theme-color-highlight' btn_custom_bg_hover='#444444' btn_color_font='theme-color' btn_custom_font='#ffffff' btn_color_font_hover='white' btn_custom_font_hover='#ffffff' border='' border_width='' border_width_sync='true' border_color='' border_radius='' border_radius_sync='true' box_shadow='' box_shadow_style='0px,0px,0px,0px' box_shadow_color='' animation='' animation_duration='' animation_custom_bg_color='' animation_z_index_curtain='100' hover_opacity='' sonar_effect_effect='' sonar_effect_color='' sonar_effect_duration='1' sonar_effect_scale='' sonar_effect_opac='0.5' css_position='' css_position_location=',,,' css_position_z_index='' av-desktop-css_position='' av-desktop-css_position_location=',,,' av-desktop-css_position_z_index='' av-medium-css_position='' av-medium-css_position_location=',,,' av-medium-css_position_z_index='' av-small-css_position='' av-small-css_position_location=',,,' av-small-css_position_z_index='' av-mini-css_position='' av-mini-css_position_location=',,,' av-mini-css_position_z_index='' id='' custom_class='' template_class='' av_uid='av-22oe9u' sc_version='1.0' admin_preview_bg='']

    On the other hand if I create a simple button in a column everything works fine. My problem is that I need to use the button inside the accordion styled as it is now.

    Do you have any suggestion?

    #1486734

    Hi,

    Thanks for that. Please try the following in Quick CSS under Enfold->General Styling:

    .phone-info a {
      font-size: 22px !important;
    }

    Best regards,
    Rikard

    #1486692
    beenee
    Participant

    Dear support team,

    My present programming allows me to hide the top header on large views. It should only be displayed on mobile views. Therefor I found this code:

    /*phone info mobile only */
    #header_meta {
        min-height: 60px !important; 
    }
    #header_meta .phone-info {
        line-height: 60px !important; 
        font-size: 20px !important; 
    }
    
    @media only screen and (min-width: 768px) {
    #header_meta{
      display:none;
    }
    }
    

    I cannot seem to get the phone info font bigger for mobile view.

    Could you have a look please?

    Thanks,
    Stefan

    btw. i optimized those rules a little – and you do not need to shrink the menu items font-size – because it breaks to burger menu earlier.

    So : better remove all the code from above – and insert instead:

    
    #top #header .av-main-nav > li > a {
      font-size: 16px !important;
      padding: 0 12px !important;
    }
    
    @media only screen and (min-width: 1430px) {
      #header #header_main {
        width: 1430px;
        margin: 0 auto;
      }
    }
    
    @media only screen and (min-width: 990px) {
      #header #header_main {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-around;
      }
      #header #header_main > * {
        flex: 1 1 auto;
        align-self: center;
        width: unset;
      }
      #header #header_main .av-logo-container {
        flex-basis: calc(100% - 170px);
        flex-grow: 1;
        order: 1;
        max-width: unset;
      }
      #header #header_main .widget {
        margin-right: 50px;
        flex-grow: 0;
        flex-basis: 120px !important;
        order: 2;
        display: flex;
        justify-content: center;
      }
      #header #header_main #header_main_alternate {
        flex-basis: 100%;
        order: 3;
        border-top: none;
      }
    }
    
    @media only screen and (max-width: 989px) {
      #header #header_main {
        display: flex;
        flex-flow: wrap column-reverse;
      }
      #header #header_main .widget {
        margin-top: 0px;
        padding: 10px 0 !important;
      }
       #header_main .av-logo-container {
        height: 150px !important;
      }
      #header_main .inner-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 150px;
      }
      #header_main .inner-container > * {
        align-self: center;
      }
    
      #header_main .inner-container .main_menu {
        display: flex !important;
        align-items: center;
      }
      #header_main .inner-container .avia-standard-logo {
        width: 215px
      }
      #header_main .inner-container .main_menu .social_bookmarks  {
        top: 0;
        margin-top: 0 !important;
      }
    }
    
    @media only screen and (max-width: 767px) {
      .responsive #top #wrap_all .main_menu {
        position: relative !important;
      }
    }
    leosaraceni
    Participant

    Hello,
    I’m working on a new design for an existing site currently running Enfold 7.1.1 but when I try to edit style options within certain elements, like uploading a custom background image for a row or a cell container, or editing the padding or font size for a button, none of the styles appear in the frontend.

    #1486524

    All you need is to get rid of the min-height option – the fullwidth slider is a responsive slider !

    for the caption it might be neccessary to have for very small screens smaller font-sizes – or to set a part (f.e. the avia-caption-content to display:none )

    you got a rule :

    @media only screen and (max-width: 489px) {
      .avia-slideshow li img {
        width: 100%;
        background-size: cover;
        height: 200px;
        object-fit: cover;
        left: 30px !important;
        position: relative;
        overflow: visible;
      }
    }

    Remove the rules given to you by ismael first because …

    remove the left position – and height – otherwise you will have a gray bar on the left ;)

    then there are some min-height properties:

    inline-styles

    @media only screen and (max-width: 489px) {
      .home #full_slider_1, .home #full_slider_1 .avia-slideshow, 
      .home #full_slider_1 .avia-slideshow-inner, .home #full_slider_1 .avia-slide-wrap {
        min-height: 200px;
        height: 200px !important;
      }
    }


    and enfold css:

    @media only screen and (max-width: 479px) {
      .home #full_slider_1, 
      .home #full_slider_1 .avia-slideshow, 
      .home #full_slider_1 .avia-slideshow-inner, 
      .home #full_slider_1 .avia-slide-wrap {
        min-height: 300px;
      }
    }

    don’t know where they come from. But if you like to see the full width of the image – these settings are suboptimal.

    #1486452

    In reply to: Underlined text

    Hey lelouxwebdesign,

    This CSS is removing the underline:

    #top .all_colors span[style*="underline;"] {
      color: #000000;
      font-size: 14px;
      font-weight: bold;
      text-decoration: none !important;
    }

    Maybe you have added it in Quick CSS?

    Best regards,
    Rikard

    #1486442

    Hey Ivana,

    Thank you for the inquiry.

    Did you modify the H3 heading element in the Enfold > Advanced Styling panel? The blog and portfolio post titles inherit the styles from the advanced styling configuration. If you want to override it, you can try using this css code:

    #top #wrap_all .all_colors h3.grid-entry-title, #top #wrap_all .all_colors h3.slide-entry-title.entry-title {
        font-size: 16px !important;
        line-height: 1.4 !important;
        display: block;
        margin-bottom: 0;
    }

    Make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings to ensure that the changes take effect.

    Best regards,
    Ismael

    #1486441
    web4smallbusiness
    Participant

    I wonder if I might be able to get some quick CSS code help please

    My blog feed title and also portfolio feed title font is large and no matter what I try, it doesn’t change. See pages in private content below.

    ChatGPT recommended I add the following for the blog, but it didn’t work:

    .blog .grid-entry .post-title.entry-title a {
    font-size: 14px !important;
    line-height: 1.4 !important;
    display: block;
    margin-bottom: 5px;
    }

    I also tried reducing the H2 code in Advanced styling and that had no effect.

    Hi,

    You can set the font size by editing the Special Heading element containing the text “Hi, I’m Robert”. Look for the Styling > Font Sizes > Heading Font Size option, as shown in the screenshot below.

    View post on imgur.com

    For the screenshot, you can use platforms like Savvyify, Imgur or Dropbox.

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    Note: the section Working With Us is Easy

    Talk (1) is missing the (1) in green on a mobile device, Q: how do I make it visible? (Tested on a Samsung Galaxy s24.

    RE: You can apply the same font size to the “Hi, I’m Robert” heading, remove the 30px padding, and delete the horizontal separator element after it to reduce the space between the heading and the text below.

    I’m not seeing these options under: https://blgenvironmental.com/wp-admin/post.php?post=1104&action=edit&classic-editor

    The Text Block Content is configured as an H@ header under the content tab. The styling and advanced tabs have no settings for Padding.

    Side Question: How do upload images and screenshots in this support system?

    Please advise.

    Hi,
    If you want the font to be 200px and the menu items closer and to the left, try this CSS in your <strong style=’color:#000′>Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top #av-burger-menu-ul {
        text-align: left;
        padding-left: 20px !important;
    }
    .html_av-overlay-full #av-burger-menu-ul li {
    padding: 10px;
    }
    #top #wrap_all #av-burger-menu-ul li {
        font-size: 200px;
    }

    After applying the css, please clear your browser cache and check.
    Screen Shot 2025 07 05 at 8.07.00 AM

    Best regards,
    Mike

    Hi,

    Thanks for the update.

    Q: why does : Working With Us is Easy not look the same size?

    The font size of both headings is the same —- 28px.

    View post on imgur.com

    You can apply the same font size to the “Hi, I’m Robert” heading, remove the 30px padding, and delete the horizontal separator element after it to reduce the space between the heading and the text below.

    Best regards,
    Ismael

    luleloki
    Participant

    Dear Kriesi team,
    I have two questions:
    1. how can I change the font size and line spacing on the “Menu links page overlay” – the maximum font size is 120 px, the minimum line spacing is 0.7em; I would like to be able to vary the sizes individually.

    2. I have a modified lightbox: it is modified so that I can display websites there. I want to keep it that way. I just want the lightbox to be fixed and not scroll when the content is scrolled inside.

    Can you please help me with this, do you have any ideas on how I can do this?

    I have included a private link to my website below!

    Best regards

    #1486133

    Hi,

    Try to edit the Contact Form element and set the Styling > Form Color Scheme to Dark Transparent. You can also replace the previous css with this:

    #top #wrap_all .main_color .button, .main_color #submit, #top #wrap_all .contact-form :is([type=submit], button:not([type=reset])) {
        align-items: center;
        display: inline-flex;
        gap: .5em;
        justify-content: center;
        border-radius: 100px;
        color: rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(0, 0, 0, 0.6);
        background: 0 0;
        font-size: 14px;
        border-style: solid;
        border-width: 1px;
        transition: all 0.4s ease-in-out;
        padding: 9px 10px 7px;
        width: 80px;
    }

    Best regards,
    Ismael

    #1486123

    Hi,

    Please remove the previous modification and replace it with the following css code, then make sure to purge the cache or clear your browser history afterward.

    #top #wrap_all .contact-form :is([type=submit], button:not([type=reset])) {
        align-items: center;
        display: inline-flex;
        gap: .5em;
        justify-content: center;
        border-radius: 100px;
        color: rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(0, 0, 0, 0.6);
        background: 0 0;
        font-size: 14px;
        border-style: solid;
        border-width: 1px;
        transition: all 0.4s ease-in-out;
        padding: 9px 10px 7px;
        width: 80px;
    }

    Best regards,
    Ismael

    #1486115
    kalla77
    Participant

    Hi
    here is a severe issue: “Taxonomy tags of masonry element incomplete”

    1: Open gwup.org
    2: Scroll down until “Vollständige Artikel”
    3: Find this list of filterable tags (taxonomy) – it is NOT COMPLETE
    4: Click on the button” “Mehr laden”
    5: NOW you see the complete list.

    See video here:
    [video src="https://www.gwup.org/temporaer/taxonomy-issue.mp4" /]

    This is a severe issue.
    Please tell us how to fix it!

    Here is the code:

    [av_masonry_entries link='category,2780,2781,2779,2782,2793,2797,2783,2784,2798,2799,2800,2801,2785,2786,2787,2788,2802,2792,2789,2803,2804,2805,2790' term_rel='' wc_prod_visible='' wc_prod_hidden='hide' wc_prod_featured='' prod_order_by='' prod_order='' date_filter='' date_filter_start='' date_filter_end='' date_filter_format='yy/mm/dd' period_filter_unit_1='1' period_filter_unit_2='year' page_element_filter='skip_current' sort='yes-tax' query_orderby='date' query_order='DESC' caption_elements='title excerpt' caption_styling='' caption_display='on-hover' img_copyright='' size='fixed masonry' orientation='' image_size='masonry' gap='large' columns='4' av-desktop-columns='' av-medium-columns='' av-small-columns='' av-mini-columns='' items='12' paginate='load_more' color='custom' custom_bg='' 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='' animation='active' animation_duration='' animation_custom_bg_color='' animation_custom_bg_color_multi_list='' animation_z_index_curtain='100' overlay_fx='active' img_scrset='' lazy_loading='disabled' av-small-hide='aviaTBav-small-hide' av-mini-hide='aviaTBav-mini-hide' alb_description='' id='' custom_class='' template_class='' av_uid='av-m7i3btdw' sc_version='1.0']

    [av_masonry_entries link='category,2780,2781,2779,2782,2793,2797,2783,2784,2798,2799,2800,2801,2785,2786,2787,2788,2802,2792,2789,2803,2804,2805,2790' term_rel='' wc_prod_visible='' wc_prod_hidden='hide' wc_prod_featured='' prod_order_by='' prod_order='' date_filter='' date_filter_start='' date_filter_end='' date_filter_format='yy/mm/dd' period_filter_unit_1='1' period_filter_unit_2='year' page_element_filter='skip_current' sort='yes-tax' query_orderby='date' query_order='DESC' caption_elements='title excerpt' caption_styling='' caption_display='on-hover' img_copyright='' size='fixed masonry' orientation='' image_size='masonry' gap='large' columns='4' av-desktop-columns='' av-medium-columns='' av-small-columns='' av-mini-columns='' items='3' paginate='load_more' color='custom' custom_bg='' 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='' animation='active' animation_duration='' animation_custom_bg_color='' animation_custom_bg_color_multi_list='' animation_z_index_curtain='100' overlay_fx='active' img_scrset='' lazy_loading='disabled' av-desktop-hide='aviaTBav-desktop-hide' av-medium-hide='aviaTBav-medium-hide' alb_description='' id='' custom_class='' template_class='' av_uid='av-m7rio00o' sc_version='1.0']

    mfg
    Andrè

Viewing 30 results - 151 through 180 (of 18,737 total)