-
AuthorSearch Results
-
August 27, 2025 at 10:41 am #1488596
Admittedly, this is a very specific replacement for the usual \e869 icon. But that is probably what is meant by a CSS (not CMS) solution. For a simpler replacement, \e80e does not look quite as complicated.
https://webers-testseite.de/popup-gallery/
but i think now these icons are svg ones – so the simple method to replace the font-icon by just doing:
#top .image-overlay .image-overlay-inside::before { content: "\E80E" !important; font-family: entypo-fontello; font-size: 42px; font-weight: 400; }August 26, 2025 at 10:31 pm #1488568In reply to: fontawesome
Hey Christian,
Where are you trying to upload fontawesome?
Typically you do not upload fontawesome, it is not compatible with the theme font manager and will not show in the ALB icons.
So you need to sign up here to get your “Kit”
Then you will get a code like this to put in your header:<script src="https://kit.fontawesome.com/244e4f20aaa.js" crossorigin="anonymous"></script>
add it to the end of your child theme functions.php file in Appearance ▸ Editor in this function:function Font_Awesome_7(){ ?> <script src="https://kit.fontawesome.com/244e4f20aaa.js" crossorigin="anonymous"></script> <?php } add_action('wp_head', 'Font_Awesome_7');be sure to change the link to yours.
Then choose your icon and make sure that you add a size to the icon code, for example<i class="fas fa-mug-hot fa-10x"></i>
and add it to your page.

See this documentation:
https://docs.fontawesome.com/Note they also have a plugin, I have not tried it, see: https://docs.fontawesome.com/web/use-with/wordpress
Best regards,
MikeAugust 26, 2025 at 5:33 pm #1488546In reply to: No Logo in Header and a title instead
you can use f.e. the filter: avf_logo_final_output
using the settings on bloginfo and the page-titlefunction use_text_logo_only($logo){ $link = apply_filters( 'avf_logo_link', home_url( '/' ) ); $logo_tag = "h1"; $logo_heading = "Your Text for Logo"; $alt = get_bloginfo( 'name' ); $title = get_bloginfo( 'name' ); $page_title = get_the_title(); if(is_front_page()){ $logo = '<a class="logo text-logo" href="'.$link.'" alt="'.$alt.'" title="'.$title.'"><'.$logo_tag.'>' .$logo_heading.'</'.$logo_tag.'></a>'; } else{ $logo = '<a class="logo text-logo" href="'.$link.'" alt="'.$alt.'" title="'.$page_title.'"><'.$logo_tag.'>' .$logo_heading.'<span class="page-title"> - '.$page_title.'</span></'.$logo_tag.'></a>'; } return $logo; } add_filter('avf_logo_final_output','use_text_logo_only');you see that here are some conditionals
here the front-page shows only the bloginfo – all other pages both blog-info and page-titlefit it to your needs .
Some css will finish the setting then – but it will be best to see the page it belongs to.
f.e.
#top .logo.text-logo { height: auto; display: block; margin: 0 !important; position: absolute !important; top: 50%; transform: translateY(-50%); } #top .logo.text-logo h1 { margin: 0 !important; font-size: 42px; }see here example: https://basis.webers-testseite.de/
there had to be some adjustments for responsive styling – because i will change it after you have seen the page – i do not want to do that.
August 26, 2025 at 6:12 am #1488522In reply to: Text Overlay Size
August 25, 2025 at 8:54 am #1488483In reply to: Replacing the cookies icon with another icon
Hi,
Thank you for the update.
You can use this css code to adjust the color of the scroll up icon:
#scroll-top-link.avia_pop_class { font-size: 30px; color: #1acbbc; }Best regards,
IsmaelAugust 25, 2025 at 8:46 am #1488481In reply to: Small screens doesn’t show all pages in menu
Hi,
Thank you for the update.
You can install menu plugins like UberMenu, WP Mega Menu or QuadMenu to display a different menu, but this may not fully resolve the issue without also considering a layout change or more direct intervention on your part, such as the ones we recommended above. Another option is to reduce the height of the menu items and the surrounding padding. Please try this css code:
#top .av-main-nav ul a { height: auto; line-height: 18px; padding: 2px 15px; font-size: 12px; min-height: 18px; }Best regards,
IsmaelAugust 22, 2025 at 7:05 am #1488395In reply to: Social media icon sizes and page placement
here on that page you can achieve this by:
(the old way – because using font-icons)#top .main_menu { right: 145px; /* === A correction value for the now broader social_bookmarks === */ padding-right: 10px; } #header_main .social_bookmarks { margin: 0; height: 40px; top: 50%; transform: translateY(-50%); } #top .social_bookmarks li { width: 36px; } #top .social_bookmarks li a { width: 40px; line-height: 40px; min-height: 40px; } #top .social_bookmarks li a:before { font-size: 24px }Perhaps it needs to be adapted for your website. As a participant, I cannot see any private content, so I’m afraid I can’t offer any better advice.
NEXT: now the bookmarks are svg icons – so the css had to be different.
But i do not find an example page to do so. I had to look on one of my installatons to have that different css.#top .avia-menu.av_menu_icon_beside { border-right: none; padding-right: 10px; margin-right: 10px; } #top nav .social_bookmarks { position: relative; transform: translateY(-50%); margin: 0 !important; height: 40px !important; } #top .social_bookmarks li { width: 40px; margin-left: 3px } #top .social_bookmarks li a { width: 40px !important; line-height: 40px; border-radius: 10px !important; min-height: 40px; } #top .social_bookmarks li.avia-svg-icon img[is-svg-img="true"], #top .social_bookmarks li.avia-svg-icon svg:first-child { height: 1.5em; width: auto; margin-top: 5px; }August 21, 2025 at 4:48 am #1488337In reply to: Column problem on mobile
Hi,
You can open a new thread here: https://kriesi.at/support/forum/enfold/#new-post
There is no option for this by default, but you can apply a custom css class to the Special Heading element (e.g “av-custom-gradient-text”), then add the following css code:
.av-custom-gradient-text { font-size: 48px; font-weight: bold; background: linear-gradient(to right, #ff7e5f, #feb47b); -webkit-background-clip: text; color: transparent; }If you have more questions, please feel free to open another thread using the form above.
Best regards,
IsmaelAugust 20, 2025 at 3:40 pm #1488311This reply has been marked as private.August 20, 2025 at 10:01 am #1488290In reply to: WCAG 2.1, Keyboard Access
Dear Enfold Experts, I am not too sure what Envatojlc’s comments have to do with my original question but this has not been addressed so far anyhow, so might have slipped through.
The situation is the following:
a) WP Accessibility Plugin activated
b) small green border configured in WP Accessibility to mark where the Keyboard Tab key jumps to for all Buttons / links that can be addressed via Keyboard
c) Entering the Home Page
d) Press Tab Key once => jumps to change contrast button from Accessibility Plugin, green border, all fine. 2nd time Tab key pressed => jumps to change font size from Accessibility Plugin, green border, all fine. 3rd Time Tab pressed => jumps to top of page, no button visible, no green border, looks like a jump into nowhere, totally unclear where the cursor is.When checking this with the Firefox Inbuild Dev Tool for accessibility it states for the Header Banner: clickable elements need to be interactive and focused. So there is something in the Header generation that fails. Can you please check? And of course I would like a future feature (similar to the link color configuration in the theme) to configure the Keyboard accessible elements Coloring or Settings in the Enfold theme instead of outsourcing that to WP Accessibility.
thanks Anja
August 20, 2025 at 9:07 am #1488288In reply to: Change the space between table lines on mobile.
Hi,
Try this CSS as well:
@media only screen and (max-width: 900px) { #colum_tabla td.avia-highlight-col { width: 110px; } #colum_tabla td { font-size: 15px; } }Best regards,
RikardAugust 19, 2025 at 8:43 pm #1488269In reply to: increase size of logo and burger icon on mobile view
I think I got it. You are awesome. Please check to see if correct :
/* TEXT SHADOW FOR – Fullwidth Easy Slider – Headline: */
.avia_transform .av_slideshow_full .active-slide .avia-caption-title,
.avia_transform .av_fullscreen .active-slide .avia-caption-title
{text-shadow: 1px 1px 1px #717070;}/* TEXT SHADOW FOR – Fullwidth Easy Slider – Caption Text: */
#top .avia-slideshow .av-slideshow-caption .avia-caption-content p {
text-shadow: 1px 1px #717070;
}/* TEXT SHADOW FOR – ALL H1 headlines: */
.av-special-heading h1 {
text-shadow: 1px 1px #717070;
}/* TEXT SHADOW FOR – SPECIFIC H1 headlines: */
.av-special-heading.av-nlr5x-bb365aeef7c91c871c871ed41100301d h1 {
text-shadow: 1px 1px #717070;
}/* TEXT SHADOW FOR – subheading text: */
#top .av-subheading p {
text-shadow: 1px 1px #717070;
}#header_meta a, #header_meta span {
font-size:16px !important;
}.phone-info {
font-size: 18px;
}@media only screen and (max-width: 1023px) {
#header {
position: fixed !important;
height: 120px !important;
max-height: 120px !important;
}#top #header.av_header_transparency #header_meta {
background-color: transparent;
}#header_main {
border-bottom: none;
}#header:not(.av_header_transparency) #header_main {
box-shadow: 0 5px 5px rgba(182,182,182,0.75);
}.responsive #top .av-logo-container ,
.responsive #top .logo a,
.responsive #top .logo img,
.responsive #top .logo svg {
height: 120px !important;
max-height: 120px !important;
line-height: 120px !important;
}.responsive #top .av-main-nav .menu-item-avia-special a {
height: 120px !important;
line-height: 120px !important;
}.responsive.html_mobile_menu_tablet #top #wrap_all .av_header_transparency {
background-color: transparent !important;
}#top .header_bg {
background-color: transparent !important;
}#top #header:not(.av_header_transparency) .header_bg {
background-color: #FFF !important;
}.responsive.html_mobile_menu_tablet #top .av_header_transparency .logo img.alternate,
.responsive.html_mobile_menu_tablet #top .av_header_transparency .logo .subtext.avia-svg-logo-sub {
display: block !important;
}.responsive.html_mobile_menu_tablet #top .av_header_transparency.av_alternate_logo_active .logo a > img,
.responsive.html_mobile_menu_tablet #top .av_header_transparency.av_alternate_logo_active .logo a > svg {
opacity: 0;
}/*** das hier individuell anpassen je nach dem ***/
#top #header.av_header_transparency #header_meta .phone-info * {
color: #FFF !important;
}.html_mobile_menu_tablet .header_color #header.av_header_transparency div .av-hamburger-inner,
.html_mobile_menu_tablet .header_color #header.av_header_transparency div .av-hamburger-inner::before,
.html_mobile_menu_tablet .header_color #header.av_header_transparency div .av-hamburger-inner::after {
background-color: #FFF;
}
.html_mobile_menu_tablet .header_color #header.av_header_transparency .menu-item-search a:before {
color: #FFF;
}
.responsive.html_header_top.html_mobile_menu_tablet #top #main {
padding-top: 120px !important;
}
.responsive.html_header_top.html_header_transparency.html_mobile_menu_tablet #top #main {
padding-top: 0 !important;
}
}@media only screen and (max-width:1023px) {
#avia-menu .menu-item {
display:none
}
.av-burger-menu-main.menu-item-avia-special {
display:block
}
}@media only screen and (max-width:767px) {
.responsive.html_header_top.html_header_transparency.html_mobile_menu_tablet #top #main #av_section_1 .content {
padding-top: 150px
}
}-
This reply was modified 5 months ago by
bemodesign.
-
This reply was modified 1 month ago by
Yigit.
August 15, 2025 at 5:11 pm #1488105In reply to: Title not responsive
Hey koomo,
You can set different font sizes for different screen sizes in the Styling tab in the element options.
Best regards,
RikardAugust 13, 2025 at 10:27 pm #1487998Topic: Mobile view Caption Title issue – Fullwidth Easy Slider
in forum Enfoldbemodesign
ParticipantCan you get me CSS code to adjust Caption Title “font size” and “Line Height”? I am trying to adjust all this on Mobile view, so that it fits on all phones. Suggestions? I am trying to make the blue headline line height less, and maybe make it smaller on mobile only. Here is the current html I am using for this headline: <strong style=”font-size: 140%;”>Future-Proof Your Business<br> <span style=”color: #04aef7;”>Web Design & GEO AI SEO</span>
screenshot: https://img.savvyify.com/image/IMG-748587C9C75D-1.yyQrK
August 13, 2025 at 11:13 am #1487952In reply to: Different style in different language
Hi,
Thank you for the inquiry.
Did you add this css code? It seems to be the reason why the font size of the post title is much larger on the other site.
.html_modern-blog #top .post-entry .post-title, .html_modern-blog .avia-content-slider .slide-entry-title { font-size: 2em; text-align: left; letter-spacing: 1px; }Also, make sure that the Enfold > Blog Layout > Blog Styling and Blog Layout settings are the same on both installations.
Best regards,
IsmaelAugust 11, 2025 at 11:55 pm #1487863In reply to: Iconbox Icon Smaller
August 11, 2025 at 9:55 pm #1487859In reply to: Iconbox Icon Smaller
Hi,
I believe that I found the error in the css, this instead:#iconstyle .iconbox_icon.avia-svg-icon img[is-svg-img=true],#iconstyle .iconbox_icon.avia-svg-icon svg:first-child { height: 0.3em; width: 0.3em; top: -10px; position: relative; } #top #iconstyle .avia-font-entypo-fontello, body #iconstyle .avia-font-entypo-fontello, html body #iconstyle [data-av_iconfont='entypo-fontello']:before { font-family: 'entypo-fontello'; line-height: .3em; display: block; top: 0; position: relative; font-size: 0.3em; }After applying the css, please clear your browser cache and check.
Best regards,
MikeAugust 10, 2025 at 8:28 pm #1487814In reply to: Iconbox Icon Smaller
Hi,
Try adjusting the size like this:#iconstyle .iconbox_icon.avia-svg-icon img[is-svg-img=true], .iconbox_icon.avia-svg-icon svg:first-child { height: 0.3em; width: 0.3em; top: -10px; position: relative; } #top #iconstyle .avia-font-entypo-fontello, body #iconstyle .avia-font-entypo-fontello, html body #iconstyle [data-av_iconfont='entypo-fontello']:before { font-family: 'entypo-fontello'; line-height: .3em; display: block; top: 0; position: relative; font-size: 0.3em; }Best regards,
MikeAugust 8, 2025 at 8:37 pm #1487755In reply to: Iconbox Icon Smaller
Hi,
It looks like your “custom class” iconstyle is actually a ID, perhaps you added it to the wrong field in the developer tab.
To correct the above css, try this:#iconstyle .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 #iconstyle .avia-font-entypo-fontello, body #iconstyle .avia-font-entypo-fontello, html body #iconstyle [data-av_iconfont='entypo-fontello']:before { font-family: 'entypo-fontello'; line-height: 1.5em; display: block; top: 0; position: relative; font-size: 0.6em; }After applying the css, please clear your browser cache and check.
Best regards,
MikeAugust 7, 2025 at 7:19 pm #1487711In reply to: Iconbox Icon Smaller
Thanks. I went ahead and added a custom class. Is this correct? and than the class is iconstyle
.iconstyle .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; } .iconstyle #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; }August 7, 2025 at 2:02 pm #1487692Topic: Jumbled Form Field Titles
in forum Enfolda_edemirci
ParticipantHello,
I have created few forms by using several different plugins. However, in every case, longer form field titles are jumbled in mobile view. Altough the sizes of the fields are responsive, longer titles are jumbled in mobile view. Is there any way to make these titles responsive (eg.smaller fonts) in mobile? Thank you….August 7, 2025 at 4:28 am #1487680In reply to: Background color form payment step
Hi,
Thank you for the link.
You can use this css code to adjust the style of the checkout form fields.
.main_color div.product .woocommerce-tabs ul.tabs li.active a, .main_color .cart_dropdown .dropdown_widget .widget_shopping_cart_content, .main_color .cart_dropdown_link, .main_color .inner_product_header, .main_color .avia-arrow, #top .main_color .variations select, #top .main_color .variations input, #top .main_color #reviews input[type='text'], #top .main_color #reviews input[type='email'], .main_color #reviews .comment-text, .main_color #reviews #comment, .main_color .single-product-main-image .images a, #top .main_color .shop_table.cart .input-text, #top .main_color form.login .input-text, #top .main_color form.register .input-text, .main_color .chosen-container-single .chosen-search, .main_color .products .product-category h3:before, #top .main_color .quantity input.qty { background-color: #4f79e3; } #top div.woocommerce-message { border-color: #acb6ce; background-color: #4f79e3; color: #ffffff; } #top label span, #top legend span { font-weight: 400; font-size: 13px; color: #ffffff; }Best regards,
IsmaelAugust 7, 2025 at 4:11 am #1487678In reply to: Adding Button To Header
Hey Caitlin,
Thank you for the inquiry.
Before proceeding, we kindly ask you to register on the forum using the purchase code associated with your theme license. Please use the following link: https://kriesi.at/support/register/
Once registered, you can open a new thread using the form here: https://kriesi.at/support/forum/enfold/#new-post
To add a button to the header widget area, you can use the Text widget, then add this shortcode:
[av_button label=' (Email address hidden if logged out) ' icon_select='yes' icon='mail' font='svg_entypo-fontello' title_attr='' button_type='' link='manually,mailto: (Email address hidden if logged out) ' link_dynamic='' link_target='' download_file='https://' attachment='' attachment_size='' downloaded_file_name='' size='small' position='center' label_display='' size-text='' 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='' 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-me0reo0x' sc_version='1.0' admin_preview_bg='']You can also use this html:
<div class="avia-button-wrap av-me0reo0x-af6ff2d8373030c9c60f62b386b56008-wrap avia-button-center avia-builder-el-0 el_before_av_slideshow_accordion avia-builder-el-no-sibling "><a href="mailto: (Email address hidden if logged out) " class="avia-button av-me0reo0x-af6ff2d8373030c9c60f62b386b56008 av-link-btn avia-icon_select-yes-left-icon avia-size-small avia-position-center avia-color-theme-color" aria-label=" (Email address hidden if logged out) "><span class="avia_button_icon avia_button_icon_left avia-svg-icon avia-font-svg_entypo-fontello" data-av_svg_icon="mail" data-av_iconset="svg_entypo-fontello"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="29" height="32" viewBox="0 0 29 32" preserveAspectRatio="xMidYMid meet" aria-labelledby="av-svg-title-4" aria-describedby="av-svg-desc-4" role="graphics-symbol"> <title id="av-svg-title-4">Mail</title> <desc id="av-svg-desc-4">Mail</desc> <path d="M0.96 8.448q-1.024-0.576-0.896-1.28 0.064-0.448 0.832-0.448h27.072q1.216 0 0.64 1.024-0.256 0.448-0.768 0.704-0.448 0.192-6.144 3.264t-5.824 3.136q-0.512 0.32-1.472 0.32-0.896 0-1.472-0.32-0.128-0.064-5.824-3.136t-6.144-3.264zM28.16 11.648q0.64-0.32 0.64 0.32v11.776q0 0.512-0.544 1.024t-1.056 0.512h-25.6q-0.512 0-1.056-0.512t-0.544-1.024v-11.776q0-0.64 0.64-0.32l12.288 6.4q0.576 0.32 1.472 0.32t1.472-0.32z"></path> </svg></span><span class="avia_iconbox_title"> (Email address hidden if logged out) </span></a></div>Best regards,
IsmaelAugust 7, 2025 at 3:45 am #1487674In 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,
IsmaelAugust 5, 2025 at 9:49 am #1487595hier 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; }August 5, 2025 at 9:09 am #1487592In reply to: The pages don’t have title
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; }August 4, 2025 at 6:29 am #1487536In reply to: Portfolio Grid Settings
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,
IsmaelAugust 2, 2025 at 5:34 pm #1487504Topic: Portfolio Grid Settings
in forum Enfoldicarogioiosi
ParticipantI’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.
August 2, 2025 at 1:26 pm #1487490Hi,
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,
MikeAugust 1, 2025 at 5:40 am #1487438Hey 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 -
This reply was modified 5 months ago by
-
AuthorSearch Results
-
Search Results
-
Can you get me CSS code to adjust Caption Title “font size” and “Line Height”? I am trying to adjust all this on Mobile view, so that it fits on all phones. Suggestions? I am trying to make the blue headline line height less, and maybe make it smaller on mobile only. Here is the current html I am using for this headline: <strong style=”font-size: 140%;”>Future-Proof Your Business<br> <span style=”color: #04aef7;”>Web Design & GEO AI SEO</span>
screenshot: https://img.savvyify.com/image/IMG-748587C9C75D-1.yyQrK
Topic: Jumbled Form Field Titles
Hello,
I have created few forms by using several different plugins. However, in every case, longer form field titles are jumbled in mobile view. Altough the sizes of the fields are responsive, longer titles are jumbled in mobile view. Is there any way to make these titles responsive (eg.smaller fonts) in mobile? Thank you….Topic: Portfolio Grid Settings
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.


