Hi,
Thank you for the update.
The implementation above relies on the “data-copy” attribute, which cannot be added to any builder elements. You may need to manually copy the HTML into a code or text block. If you need it to look like a default builder button, you can try this html:
<div class="avia-button-wrap avia-button-center">
<a href="javascript:void(0);"
class="avia-button av-lzt94u23-6a241e487832b9aa657eb8d56d62aa80 av-link-btn avia-icon_select-yes-left-icon avia-size-small avia-position-center avia-color-theme-color btn-copy js-tooltip js-copy"
data-toggle="tooltip"
data-placement="bottom"
data-copy="https://urltocopy.com/test/"
title="Copy URL"
onclick="var tempInput = document.createElement('textarea'); tempInput.value = this.getAttribute('data-copy'); document.body.appendChild(tempInput); tempInput.select(); document.execCommand('copy'); document.body.removeChild(tempInput); alert('URL copied to clipboard: ' + tempInput.value);">
<span class="avia_button_icon avia_button_icon_left" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span>
<span class="avia_iconbox_title">Click me</span>
</a></div>
Best regards,
Ismael
Hey spokerstradingco,
Thank you for the inquiry.
On smaller screens, the font size is set to 0.8em. Did you configure the font size for different screen sizes (Styling > Font Sizes > Heading Font Sizes)?
#top #wrap_all .av-special-heading.av-lxums4ni-4f37f7f215843741833d4240ad4206d4 .av-special-heading-tag {
font-size: 0.8em;
}
Best regards,
Ismael
Hi, I added the code form this thread but it didn’t seem to work. https://kriesi.at/support/topic/full-page-overlay-menu-font-size/
HI, I have a 2 part question. On desktop The special heading product titles are overlapping the column boxes on my page. I have set the default font size to 5.5vw for all meaning the font should adapt but it is not. I have added a screenshot of the issue in private. This happen on Chrome and Safari. On mobile the special titles are too small – how do I make them larger on mobile? It adapts but is very small. I know I can add a default value to the mobile size but thought the auto text size would adjust to the width?
Hi,
Thanks for the links to your pages, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
@media only screen and (max-width: 425px) {
#top #wrap_all #main .avia-slideshow .av-slideshow-caption .avia-caption-title,
#top #wrap_all #main .avia-slideshow .av-slideshow-caption .avia-caption-content p,
#top #main .avia-slideshow .av-slideshow-caption .avia-caption-content {
font-size: 20px;
margin: 0;
}
.html_header_transparency #top #main .avia-builder-el-0 .slideshow_caption {
padding-top: 0;
}
}
After applying the css, please clear your browser cache and check.
Best regards,
Mike
Hi Enforld Team and Developers,
nach dem Enfold Update eine alten Website, werden viele Code-Teile mit Inline CSS beim Öffnen der Blöcke (z.B. Code- oder Text-Element) verändert.
Vorher:
<ul style="list-style-type: none; margin-left: 02px; padding-top: 8px; padding-bottom: 12px; padding-left: 0px;">
<li style="display: flex; margin-bottom: 12px;">
<span style="font-size: 18px; color: green; white-space: nowrap; margin-right: 10px;">✔ </span>
<span style="font-size: 18px;">xzzz</span></li>
<li style="display: flex; margin-bottom: 12px;">
<span style="font-size: 18px; color: green; white-space: nowrap; margin-right: 10px;">✔ </span>
<span style="font-size: 18px;">text</span></li>
<li style="display: flex; margin-bottom: 12px;">
<span style="font-size: 18px; color: green; white-space: nowrap; margin-right: 10px;">✔ </span>
<span style="font-size: 18px;">topic</span></li>
</ul>
Nachher
<ul style="list-style-type: none; margin-left: 02px; padding-top: 8px; padding-bottom: 12px; padding-left: 0px;">
<li style="display: flex; margin-bottom: 12px;"><span style="font-size: 18px;">xzzz</span></li>
<li style="display: flex; margin-bottom: 12px;"><span style="font-size: 18px;">text</span></li>
<li style="display: flex; margin-bottom: 12px;"><span style="font-size: 18px;">topic</span></li>
</ul>
Ich verstehe den Sinn, möchte aber nicht die ganze Website neu machen.
Wo kann ich das abschalten.
BR
Ralf
English: .. after the Enfold update of an old website, many code parts with inline CSS are changed when opening the blocks.
I understand the point, but I don’t want to redo the whole website.
Where can I disable this?
P.S.: Sorry, ich habe vorher im Forum gesucht, finde wohl nicht die richtigen Suchbegriffe um fündig geworden zu sein.
-
This topic was modified 1 year, 5 months ago by
RSTAC.
-
This topic was modified 1 year, 5 months ago by
RSTAC.
Hi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
@media only screen and (max-width: 425px) {
.html_header_transparency #top .avia-builder-el-0 .slideshow_caption {
padding-top: 0;
}
#top #wrap_all #main .avia-slideshow .avia-caption-title {
font-size: 40px;
}
}
After applying the css, please clear your browser cache and check.
Best regards,
Mike
This reply has been marked as private.
you can increase your font-size for that.
#avia2-menu .menu-item a {
font-size: 14px;
}
PS : maybe you give that a chance?
Test:
html #top #menu-item-search a {
transform: translateX(25px) scale(0.6);
transform-origin: right;
width: 85px !important;
}
html #top #menu-item-search a {
border: 1px solid #FFF !important;
font-size: 40px !important;
color: #8FCCF7 !important;
text-align: center !important;
padding: 0px !important;
position: relative;
top:1px;
}
html.av-burger-overlay-active #top #menu-item-search a {
position: relative;
color: #19304D !important;
background-color: #27868E !important;
border: 1px solid #e1e1e1 !important;
}
html #top #menu-item-search:hover a {
color: #FFF!important;
background-color: #237299 !important;
border: 1px solid #FFF !important;
}
html.av-burger-overlay-active #top #menu-item-search:hover a {
color: #333!important;
background-color: #27868E !important;
}
#top .avia-search-tooltip .avia-arrow-wrap {
top: -20px;
right: 35px;
}
#top .header_color #menu-item-search .avia-tt {
background: #237299 !important;
}
#top .header_color #menu-item-search #searchsubmit {
background-color: #399bcb;
}
Hi,
Please try this as well:
#av-burger-menu-ul .menu-item-has-children .sub-menu li a .avia-menu-text {
font-size: 14px;
}
Best regards,
Rikard
Hi Rikard
Tnx for the code; the colour works but the size of the font is not working unfortunately…..
Greetz
Karin
Hi,
I added your horizontal gallery to your archive pages with this function.php file:
add_action('ava_after_main_container', 'ava_after_main_title_mod');
function ava_after_main_title_mod() {
if ( is_archive() ) {
echo do_shortcode("[av_horizontal_gallery ids='3297,3299,3315,3298,3318,3308,3316,3303,3317' ids_dynamic='' initial='' img_copyright='' height='20' size='large' gap='no' active='' control_layout='av-control-hidden' slider_navigation='av-navigate-arrows av-navigate-dots' nav_visibility_desktop='' nav_arrow_color='' nav_arrow_bg_color='' nav_dots_color='' nav_dot_active_color='' lightbox_arrow_color='' lightbox_arrow_bg_color='' img_copyright_font='' av-desktop-font-img_copyright_font='' av-medium-font-img_copyright_font='' av-small-font-img_copyright_font='' av-mini-font-img_copyright_font='' img_copyright_color='' img_copyright_bg='' transition_speed='' autoplay='true' interval='3' manual_stopper='aviaTBmanual_stopper' links='active' link_dest='' lightbox_text='' img_scrset='' lazy_loading='disabled' alb_description='' id='' custom_class='' template_class='' av_uid='av-a6srr' sc_version='1.0'][/av_horizontal_gallery]");
}
}
please check.
Best regards,
Mike
This reply has been marked as private.
Hey leloux,
Please try the following in Quick CSS under Enfold->General Styling:
#av-burger-menu-ul .menu-item-has-children .sub-menu li a {
font-size: 14px;
color: red;
}
Best regards,
Rikard
Hello,
I encounter strange things in my Multisite website in two languages.
One site is in English and the other in Dutch. The pages are identical except for language.
This all looks fine, but sometimes after a change some layouts are broken. Photo missing, font in wrong size, etc.
The Enfold Parent theme is not network active (tried to make it active but that did not solve the problem)
Each (language) site has a separate child theme
Without changing anything about the broken pages, I save the (child-theme) settings again and everything appears again on the broken pages.
But later this problem may arise again.
I have tried different settings on the performance page but the problem keeps recurring.
Any idea what’s going on here?
Thanks in advance for a response.
Best,
Marius
Hi
How can i change the font color of the submenu in my burgermenu?
Ans also the font size?
I tried everything but nothing works…
Greetz
Karin
http://www.zeeuwsemeisjesdreischor.nl
Hey stefv8,
If you activate debug mode under Enfold->Layout Builder->Show advanced options, then you can add this shortcode in the box which will appear under the regular layout window on a new page, so that you can see what settings the element has:
[av_layout_row border='' min_height='0' color='main_color' mobile='av-flex-cells' id='collections' av_uid='av-6pr6fk']
[av_cell_one_fourth vertical_align='top' padding='0px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' av_uid='av-6hwbk8']
[av_image src='https://kriesi.at/themes/enfold-shop/files/2015/03/winter-girl-small-495x400.jpg' attachment='551' attachment_size='portfolio' copyright='' caption='yes' styling='no-styling' align='center' font_size='' overlay_opacity='0.7' overlay_color='#6786a1' overlay_text_color='#ffffff' animation='no-animation' hover='av-hover-grow av-hide-overflow' appearance='' link='product,66' target='' title_attr='' alt_attr='' lazy_loading='disabled' id='' custom_class='' template_class='' av_element_hidden_in_editor='0' av_uid='av-6dsjcg' sc_version='1.0' admin_preview_bg='']
NEW
WINTER COLLECTION
[/av_image]
[/av_cell_one_fourth][av_cell_one_fourth vertical_align='top' padding='0px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' av_uid='av-6686k8']
[av_image src='https://kriesi.at/themes/enfold-shop/files/2015/03/couple-sitting-495x400.jpg' attachment='546' attachment_size='portfolio' copyright='' caption='yes' styling='no-styling' align='center' font_size='' overlay_opacity='0.7' overlay_color='#6786a1' overlay_text_color='#ffffff' animation='no-animation' hover='av-hover-grow av-hide-overflow' appearance='' link='product_cat,15' target='' title_attr='' alt_attr='' lazy_loading='disabled' id='' custom_class='' template_class='' av_element_hidden_in_editor='0' av_uid='av-61m3e8' sc_version='1.0' admin_preview_bg='']
LATEST
STREET CLOTHES
[/av_image]
[/av_cell_one_fourth][av_cell_one_fourth vertical_align='top' padding='0px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' av_uid='av-5wd80g']
[av_image src='https://kriesi.at/themes/enfold-shop/files/2015/03/girls-shopping-desat-495x400.jpg' attachment='549' attachment_size='portfolio' copyright='' caption='yes' styling='no-styling' align='center' font_size='' overlay_opacity='0.7' overlay_color='#6786a1' overlay_text_color='#ffffff' animation='no-animation' hover='av-hover-grow av-hide-overflow' appearance='' link='product_cat,12' target='' title_attr='' alt_attr='' lazy_loading='disabled' id='' custom_class='' template_class='' av_element_hidden_in_editor='0' av_uid='av-5oekkg' sc_version='1.0' admin_preview_bg='']
FRESH
SPORTSWEAR
[/av_image]
[/av_cell_one_fourth][av_cell_one_fourth vertical_align='top' padding='0px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' av_uid='av-jvrd4']
[av_image src='https://kriesi.at/themes/enfold-shop/files/2015/03/hipster-girls-working-495x400.jpg' attachment='554' attachment_size='portfolio' copyright='' caption='yes' styling='no-styling' align='center' font_size='' overlay_opacity='0.7' overlay_color='#6786a1' overlay_text_color='#ffffff' animation='no-animation' hover='av-hover-grow av-hide-overflow' appearance='' link='product_cat,10' target='' title_attr='' alt_attr='' lazy_loading='disabled' id='' custom_class='' template_class='' av_element_hidden_in_editor='0' av_uid='av-5cjrlk' sc_version='1.0' admin_preview_bg='']
FUNKY
ACCECCOIRS
[/av_image]
[/av_cell_one_fourth]
[/av_layout_row]
Best regards,
Rikard
Hey leloux,
Please try the following in Quick CSS under Enfold->General Styling:
.js_active .top_tab .tab {
font-size: 18px;
}
Best regards,
Rikard
Hi
How can i increase the size of the tabtitles?
Greetz
Karin
Hi,
Try adding this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
@media only screen and (max-width: 767px) {
#top #header #av-burger-menu-ul .sub-menu .avia_mega_text_block a {
text-decoration: none;
font-size: 13px;
font-weight: 400;
}
}
Best regards,
Mike
Hey pamk21,
Thank you for the inquiry.
To add a calendar icon beside the email, you can use the av_font_icon shortcode in the Enfold > Header > Extra Element > Phone Number Or Small Info Text field. Example:
[av_font_icon icon='ue85b' font='entypo-fontello' style='' caption='' size='14px' 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-lzc7ui7m' sc_version='1.0' admin_preview_bg=''][/av_font_icon]
Best regards,
Ismael
Hi,
To move the title to the centered and make the font size larger, please try this css:
.title_container .main-title {
font-size: 20px;
}
#top .title_container .container {
text-align: center;
}
For your second question, do you mean that you want to show the gallery from /campionato-regionale-giovanile-lazio-2024/ on the /notizie/ page above the title?
If true, please add the gallery to the top of your /notizie/ page and we can provide some javascript to move it above the title for you.
Best regards,
Mike
The website link is http://www.italianafinanziamenti.it, and the corrupted module is the one on the homepage on the right, named “Preventivo personalizzato – Ottienilo in pochi passaggi”.
The CF7 formular code is divided in 2 steps.
Step 1:
<font size="3">Puoi ottenere un preventivo per la Cessione del Quinto, Delegazione di Pagamento, Anticipo del TFS o Prestito Personale.</font>
Tipologia di impiego[select TipoImpiego "Scegli" "Lavoratore Dipendente" "Lavoratore Autonomo" "Pensionato"]
[group GTipoContratto]
Tipo di contratto[select* TipoContratto "Scegli" "Tempo Determinato" "Tempo Indeterminato"]
[/group]
[group GTipoAzienda]
Tipo azienda[select TipoAzienda "Scegli" "Pubblica / Statale" "Parapubblica" "Privata" "Altro"]
[/group]
[group GEnteErogante]
Ente erogante[select* EnteErogante "Scegli" "INPS" "EX INPDAP" "Altro ente"]Tipologia di pensione[select* TipologiaPensione "Scegli" "Contributiva / Retributiva" "Inabilità / Invalidità ordinaria" "Invalidità civile" "Altra" ]
[/group]
[group GForma]
Forma[select* FormaAzienda "Scegli" "SRL/SPA" "Altro"]
[/group]
[group GRedditoMensile]
Reddito mensile[select* RedditoMensile "Scegli" "€ 500" "€ 600" "€ 700" "€ 800" "€ 900" "€ 1000" "€ 1100" "€ 1200" "€ 1300" "€ 1400" "€ 1500" "€ 1600" "€ 1700" "€ 1800" "€ 1900" "€ 2000" "€ 2000+"]
[/group]
[group GEta]
Età[select eta "Scegli" "19" "20" "21" "22" "23" "24" "25" "26" "27" "28" "29" "30" "31" "32" "33" "34" "35" "36" "37" "38" "39" "40" "41" "42" "43" "44" "45" "46" "47" "48" "49" "50" "51" "52" "53" "54" "55" "56" "57" "58" "59" "60" "61" "62" "63" "64" "65" "66" "67" "68" "69" "70" "71" "72" "73" "74" "75" "76" "77" "78" "79" "80" "81" "82"]
[/group]
[group GImportoRichiesto]
Importo richiesto[select* ImportoRichiesto "Scegli" "€ 0-5000" "€ 5000-10000" "€ 10000-20000" "€ 20000-30000" "€ 30000-40000" "€ 40000-50000" "€ 50000-60000" "€ 60000-75000"]
[/group]
[group GProvincia]
Provincia di residenza[select* Provincia "Scegli" "Agrigento" "Alessandria" "Ancona" "Aosta" "Arezzo " "Ascoli Piceno" "Asti" "Avellino" "Bari" "Barletta-Andria-Trani" "Belluno" "Benevento" "Bergamo" "Biella" "Bologna" "Bolzano" "Brescia" "Brindisi" "Cagliari" "Caltanissetta" "Campobasso" "Carbonia-Iglesias" "Caserta" "Catania" "Catanzaro" "Chieti" "Como" "Cosenza" "Cremona" "Crotone" "Cuneo" "Enna" "Fermo" "Ferrara" "Firenze" "Foggia" "Forli’-Cesena" "Frosinone" "Genova" "Gorizia" "Grosseto" "Imperia" "Isernia" "La Spezia" "L’Aquila" "Latina" "Lecce" "Lecco" "Livorno" "Lodi" "Lucca" "Macerata" "Mantova" "Massa-Carrara" "Matera" "Medio Campidano" "Messina" "Milano " "Modena" "Monza e Brianza" "Napoli" "Novara" "Nuoro" "Ogliastra" "Olbia-Tempio" "Oristano" "Padova" "Palermo" "Parma" "Pavia" "Perugia" "Pesaro e Urbino" "Pescara" "Piacenza" "Pisa" "Pistoia" "Pordenone" "Potenza" "Prato" "Ragusa" "Ravenna" "Reggio Calabria" "Reggio Emilia" "Rieti" "Rimini" "Roma" "Rovigo" "Salerno" "Sassari" "Savona" "Siena" "Siracusa" "Sondrio" "Taranto" "Teramo" "Terni" "Torino" "Trapani" "Trento " "Treviso" "Trieste" "Udine" "Varese" "Venezia" "Verbano-Cusio-Ossola" "Vercelli" "Verona" "Vibo Valentia" "Vicenza" "Viterbo"]
[/group]
[group GNoCompilati2]
<strong>Torna indietro per compilare i dati mancanti.<strong>
[/group]
["Indietro" "Avanti" "Step 2"][group GDatiPersonali]
<br>
Nome e Cognome[text* NomeCognome]
Indirizzo E-mail[email* email]
Numero di telefono[tel* tel]
[acceptance privacy] Ho letto e accetto la <a href="privacy-cookie-policy" title="privacy-cookie-policy">Privacy e Cookie Policy</a>. [/acceptance]
[/group]
[group GNofinanziamento]
<strong>Ci dispiace, non puoi ottenere un finanziamento. Contattaci per maggiori informazioni.<strong>
[/group]
[group GNoCompilati3]
<strong>Torna indietro per compilare i dati mancanti.<strong>
[/group]
Step 2:
[group GChiusura]
[radio trattamento use_label_element "Accetto" "Non accetto"]
<font size="1">Presto liberamente il mio consenso al trattamento dei dati personali, per adempiere ad obblighi di legge e regolamentari, per adempiere alle attività di analisi e d’istruttoria finalizzata all’ottenimento ed alla gestione del finanziamento da parte di Italiana Finanziamenti S.r.l.s. qualora concesso, nonché per quanto riguarda il trattamento dei dati sensibili già acquisiti o che saranno acquisiti a seguito delle operazioni sopra previste, sempre che tale acquisizione sia strumentale e nei limiti della specifica finalità perseguita dall’operazione e dai servizi richiesti.</font>
[radio comunicazione use_label_element "Accetto" "Non accetto"]
<font size="1">Presto liberamente il mio consenso per la comunicazione dei dati personali per le finalità ed alle categorie di soggetti enunciate nell’art. 3 dell’informativa e, comunque, secondo le indicazioni ivi riportate, nonché per la loro diffusione alle medesime categorie di soggetti.</font>
[radio informazioni use_label_element "Accetto" "Non accetto"]
<font size="1">Presto liberamente il mio consenso per il trattamento dei dati personali al fine di ricevere informazioni inerenti le offerte di prodotti e servizi di Italiana Finanziamenti S.r.l.s. o di soggetti terzi, ivi comprese quelle informazioni commerciali relative.</font>
[submit "Invia"]
[/group]
[group GContatti]
<strong><a href="/contatti/">VAI ALLA PAGINA DEI CONTATTI</a><strong>
[/group]
[group GNoCompilati]
<strong>Torna indietro per compilare i dati mancanti.<strong>
[/group]
[group GNoPrivacy]
<strong>È necessario accettare la Privacy e Cookie Policy. Torna Indietro per accettarla.<strong>
[/group]
Hey amyncuih,
Thank you for the inquiry.
You can use this css code to adjust the style of the table element.
.avia-data-table.avia_pricing_minimal th, .avia-data-table.avia_pricing_minimal td {
padding: 14px;
font-size: 16px;
}
Best regards,
Ismael
How to change the pricing table font size?
you can do that by subtext option – this inserts f.e. the bloginfo name and description as text.
– but you do not need to insert these dynamic texts – you can insert simple html too
( this inside child-theme functions.php)
add_filter('avf_logo_subtext', 'kriesi_logo_addition');
function kriesi_logo_addition($sub)
{
$sub .= "<h1 class='logo-title'>";
$sub .= get_bloginfo( 'name', 'display' );
$sub .= "</h1>";
$sub .= "<h2 class='logo-title logo-subtitle'>";
$sub .= get_bloginfo( 'description', 'display' );
$sub .= "</h2>";
return $sub;
}
then you can set logo img to display none – and style the text via quick css too ( positioning; font-size; colors etc. )
btw: : you can see that here on top with logo and text. this “kriesi.at” and “Premium Themes” is placed that way ( but only in strong tags)

PS: you can insert this way dynamically the page title as second text by replacing in the code above
$sub .= get_the_title();
f.e.:
#top .logo img {
display: none
}
#top .logo,
#top .logo a {
overflow:visible
}
#top .logo-title {
font-size:12px;
color:#000;
position:absolute;
left:0px;
top:-7px;
white-space:nowrap
}
#top .logo-subtitle {
color:#aaa;
top:7px
}
Hello,
I activated the title as suggested and the following result is reasonable;
https://www.federscacchilazio.com/notizie/
Only I would like to change the font size of the title and put it in the center and not on the left like now,
Another thing that would be appropriate is to add a horizontal gallery between the menu and the title, as in the following page.
https://www.federscacchilazio.com/2024/07/26/campionato-regionale-giovanile-lazio-2024/
Would it be possible to make these changes?
Thanks for the support
Andrea
Hey Alan,
Thank you for the inquiry.
You can try this code in the Enfold > Header > Extra Elements > Phone Number Or Small Info Text field.
<div class="header-phone-email">
<div>
<a href="tel:+53503799">[av_font_icon icon='ue854' font='entypo-fontello' style='' caption='' size='13px' 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-lz7v2ahm' sc_version='1.0' admin_preview_bg=''][/av_font_icon] 53 50 37 99</a></div>
<div>
<a href="mailto: (Email address hidden if logged out) ">[av_font_icon icon='ue805' font='entypo-fontello' style='' caption='' size='13px' 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-lz7v2ahm' sc_version='1.0' admin_preview_bg=''][/av_font_icon] (Email address hidden if logged out) </a></div>
</div>
Best regards,
Ismael