-
AuthorSearch Results
-
March 10, 2023 at 6:14 am #1400637
In reply to: Woocomerce Review Tab on Product Page Adjustment
Hey ovrit,
Thank you for the inquiry.
To adjust the spacing around the text in the comment box, you can add some padding to it using CSS. Here’s an example:
#reviews.cr-reviews-ajax-reviews #comments.cr-reviews-ajax-comments .cr-ajax-reviews-list .review .comment-text { padding: 1em; }And to fix the alignment of the stars, add this.
#comments span, .minitext, .form-allowed-tags, #reply-title small, #commentform label { font-size: inherit; line-height: inherit; }Best regards,
IsmaelMarch 10, 2023 at 6:03 am #1400633In reply to: Reitersektion – Font Style
Hey Anna_Tewes,
Thank you for the inquiry.
What do you mean by “Reitersektion”? We cannot find the same text in the screenshot. To change the font size of an element, you can go to the Styling tab of the element and adjust the Font Sizes options, or you can go to the Enfold > Advanced Styling panel to edit the default styles of the elements.
Best regards,
IsmaelMarch 8, 2023 at 12:22 pm #1400455In reply to: Footer does not appears
Hi,
I have created a new site, but I have select the footer and socket will be shown, but it is not working.
You modified the header.php file on your child theme. Please rename it to “old-header.php”, copy the fresh header.php file from your parent theme to your child theme, and reapply your modifications on the file and check if that helps.
And another thing is the text of home slide not resize in the mobiles.
Please edit your slide and go to Styling > Font Sizes, select mobile icon and change the font size: https://i.imgur.com/3JWpxCu.png
Also, you have the script I shared in the private content field in the style.css file of your child theme. Please refer to this post: https://kriesi.at/documentation/enfold/add-custom-js-or-php-script/#add-a-script-to-head-section and move it to the functions.php file of your child theme.
Best regards,
YigitMarch 7, 2023 at 3:29 pm #1400367In reply to: Tabs section showing wrong tab on the front end
Hi I know that was a strange issue but Im finding other issues too. I think there is just an overall issue with something going on.
I.e. I just added this page https://www.ezcomsoftware.com/evereve-direct-to-consumer/ that was a copy from https://www.ezcomsoftware.com/adi-edi/. I use the Avia Template that I created. I had done this a few hundred times without issue. If you look at the page with the issue you will see it has the exact font size and colors but its not rendering on the front end.
I need some advice here.
The same login from before would still work.
March 6, 2023 at 1:03 pm #1400238In reply to: Moble menu background colour typo of letter
Hi,
To change the secondary menu item font size in the mobile menu please try this css:.html_av-overlay-full #top #wrap_all #av-burger-menu-ul li a { font-size: 23px; }After applying the css, please clear your browser cache and check.
Best regards,
MikeMarch 6, 2023 at 7:27 am #1400217In reply to: Moble menu background colour typo of letter
My God! i am so sorry! I did not realize! Thank you so much.
Just one question, i have change also font-size to 23, but it is possible to modify the font size also submenu items?
thanksMarch 5, 2023 at 10:32 pm #1400206In reply to: Change color and size of the header social icons
Hi,
Thank you for the link to your site, to reverse the color for the social icons with the hover state and make them larger please try this css:#top #wrap_all #header_main .social_bookmarks li a { width: 40px; line-height: 40px; } #top #wrap_all #header_main .social_bookmarks { height: 40px; } #top #wrap_all #header_main .social_bookmarks li { width: 40px; font-size: 30px; } #top #wrap_all #header_main .av-social-link-facebook a { color: #fff; background-color: #37589b; } #top #wrap_all #header_main .av-social-link-facebook:hover a, #top #wrap_all #header_main .av-social-link-facebook a:focus { color: #808080; background-color: transparent; } #top #wrap_all #header_main .av-social-link-twitter a { color: #fff; background-color: #46d4fe; } #top #wrap_all #header_main .av-social-link-twitter:hover a, #top #wrap_all #header_main .av-social-link-twitter a:focus { color: #808080; background-color: transparent; } #top #wrap_all #header_main .av-social-link-instagram a { color: #fff; background-color: #a67658; } #top #wrap_all #header_main .av-social-link-instagram:hover a, #top #wrap_all #header_main .av-social-link-instagram a:focus { color: #808080; background-color: transparent; } #top #wrap_all #header_main .av-social-link-youtube a { color: #fff; background-color: #a72b1d; } #top #wrap_all #header_main .av-social-link-youtube:hover a, #top #wrap_all #header_main .av-social-link-youtube a:focus { color: #808080; background-color: transparent; } #top #wrap_all #header_main .av-social-link-linkedin a { color: #fff; background-color: #419cca; } #top #wrap_all #header_main .av-social-link-linkedin:hover a, #top #wrap_all #header_main .av-social-link-linkedin a:focus { color: #808080; background-color: transparent; }After applying the css, please clear your browser cache and check.
This is the expected results:

Best regards,
MikeMarch 5, 2023 at 11:51 am #1400151In reply to: image size for magazine
Hi Gianluca,
I see, please replace the code I gave with this one:
.av-magazine .av-magazine-hero .av-magazine-content-wrap .av-magazine-title { font-size: 18px; }Best regards,
NikkoMarch 4, 2023 at 3:43 pm #1400103In reply to: Change Layout and design of Category pages
Hey Jochen,
Thanks for the link to your pages, you cannot use the Advanced Layout Builder to create your category pages unless you create specific pages and redirect to them.
But you can change the layout of the category pages, for example, if you want to use the grid layout add this filter to your child theme functions.php:add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); function avia_change_category_blog_layout($layout, $context){ if($context == 'archive') $layout = 'blog-grid'; return $layout; }
To create a custom header to the top of your category pages you could add the element shortcode via a function like this:add_action('ava_after_main_title', 'ava_after_main_title_mod'); function ava_after_main_title_mod() { if(is_category('news')) { echo do_shortcode("[av_one_full first min_height='' vertical_alignment='av-align-top' space='' row_boxshadow_width='10' row_boxshadow_color='' margin='0px' margin_sync='true' av-desktop-margin='' av-desktop-margin_sync='true' av-medium-margin='' av-medium-margin_sync='true' av-small-margin='' av-small-margin_sync='true' av-mini-margin='' av-mini-margin_sync='true' mobile_breaking='' mobile_column_order='' border='' border_style='solid' border_color='' radius='' radius_sync='true' min_col_height='300px' padding='' padding_sync='true' av-desktop-padding='' av-desktop-padding_sync='true' av-medium-padding='' av-medium-padding_sync='true' av-small-padding='' av-small-padding_sync='true' av-mini-padding='' av-mini-padding_sync='true' svg_div_top='' svg_div_top_color='#333333' svg_div_top_width='100' svg_div_top_height='50' svg_div_top_max_height='none' svg_div_top_opacity='' svg_div_bottom='' svg_div_bottom_color='#333333' svg_div_bottom_width='100' svg_div_bottom_height='50' svg_div_bottom_max_height='none' svg_div_bottom_opacity='' column_boxshadow_width='10' column_boxshadow_color='' background='bg_color' background_color='#7bb0e7' background_gradient_direction='vertical' background_gradient_color1='#000000' background_gradient_color2='#ffffff' background_gradient_color3='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' highlight_size='1.1' animation='' animation_duration='' animation_custom_bg_color='' animation_z_index_curtain='100' parallax_parallax='' parallax_parallax_speed='' av-desktop-parallax_parallax='' av-desktop-parallax_parallax_speed='' av-medium-parallax_parallax='' av-medium-parallax_parallax_speed='' av-small-parallax_parallax='' av-small-parallax_parallax_speed='' av-mini-parallax_parallax='' av-mini-parallax_parallax_speed='' 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='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' mobile_col_pos='0' id='' custom_class='' template_class='' aria_label='' av_uid='av-leu1xz8x' sc_version='1.0'][av_heading heading='Custom Header' tag='h3' style='blockquote modern-quote modern-centered' subheading_active='' show_icon='' icon='ue800' font='entypo-fontello' size='' av-desktop-font-size-title='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' subheading_size='' av-desktop-font-size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' icon_size='' av-desktop-font-size-1='' av-medium-font-size-1='' av-small-font-size-1='' av-mini-font-size-1='' color='custom-color-heading' custom_font='#ffffff' subheading_color='' seperator_color='' icon_color='' margin='' margin_sync='true' av-desktop-margin='' av-desktop-margin_sync='true' av-medium-margin='' av-medium-margin_sync='true' av-small-margin='' av-small-margin_sync='true' av-mini-margin='' av-mini-margin_sync='true' headline_padding='' headline_padding_sync='true' av-desktop-headline_padding='' av-desktop-headline_padding_sync='true' av-medium-headline_padding='' av-medium-headline_padding_sync='true' av-small-headline_padding='' av-small-headline_padding_sync='true' av-mini-headline_padding='' av-mini-headline_padding_sync='true' padding='10' av-desktop-padding='' av-medium-padding='' av-small-padding='' av-mini-padding='' icon_padding='10' av-desktop-icon_padding='' av-medium-icon_padding='' av-small-icon_padding='' av-mini-icon_padding='' link='' link_target='' id='' custom_class='' template_class='' av_uid='' sc_version='1.0' admin_preview_bg=''][/av_heading][/av_one_full]"); } }
In the code above you will note that I added the header only to the category News in if(is_category(‘news’)) this demonstrate that you can have different headers for different categories, you will also note that this element is not a color section, color sections will cause issues on pages with sidebars, you are better off using single full width columns.
You can use the shortcode wand to get the element shortcode or Enable the Avia Layout Builder Debugger.
Give this a try and if you have trouble include an admin login so we can assist.Best regards,
MikeMarch 4, 2023 at 3:43 pm #1400102In reply to: image size for magazine
Hi Gianluca,
You can change it by adding this CSS code in Enfold > General Styling > Quick CSS (just change the font size value):
.home .av-magazine .av-magazine-content-wrap .av-magazine-title { font-size: 18px; }Hope it helps.
Best regards,
NikkoMarch 4, 2023 at 12:06 pm #1400087In reply to: Blog title and blog heading too large
Hi,
Thanks for the clarification. Did you try adjusting the font size for the H1 element for small screen sizes under Enfold->Typography?
Best regards,
RikardMarch 4, 2023 at 3:10 am #1400075Topic: Change color and size of the header social icons
in forum Enfoldblaisen
ParticipantHi. I’d like to change the color and size of the social icons placed in the header under Extra Elements. I tried using this code to just see if I could effect the size, but something appears to be overriding it:
#top .social_bookmarks li {
width: 40px!important;
font-size: 30px!important;
}Is there a way to do this with CSS? Is there a way to reverse the hover state with the regular link state and enlarge slightly?
March 3, 2023 at 8:09 pm #1400054In reply to: Blog title and blog heading too large
We don’t show the blog on our front page. We use the blog post element on separate pages and in filtered sidebars.
The heading issue is most noticeable on responsive sized screen mobile phones, though in general I would choose a smaller font across all devices.
The two shots are from a computer screen and an iPhone 11 – thanks again
examplesMarch 3, 2023 at 8:39 am #1399943In reply to: Enfold video “Wait for user action” controls missing
Hi,
Thank you for the update.
The styles for the overlay pause/play icon is missing in your installation for some reason. To fix the issue, we added this code in the Quick CSS field.
#top .avia_playpause_icon { position: absolute; height: 100px; width: 100px; margin: -50px 0 0 -50px; background: #000; background: rgba(0,0,0,0.4); border-radius: 3px; top: 50%; left: 50%; z-index: 50; display: none; -webkit-transform: scale(0.7); -ms-transform: scale(0.7); transform: scale(0.7); } #top .avia_playpause_icon:before { top: 0; left: 0; right: 0; bottom: 0; position: absolute; color: #fff; line-height: 100px; text-align: center; font-size: 40px; }Please make sure to purge the cache before checking the page again.
Best regards,
IsmaelMarch 3, 2023 at 7:44 am #1399935In reply to: Add a LinkedIn button in front page footer
Hi,
Looks like the facebook social icon was added using the icon shortcode or element. For the linked icon, try to include this shortcode in the text widget.
[av_font_icon icon='ue8fd' font='entypo-fontello' style='' caption='' size='40px' position='left' color='' link='manually,http://yourlinkedinprofile.com' linktarget='' 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-les64g5y' sc_version='1.0' admin_preview_bg=''][/av_font_icon]Replace the value (yourlinkedinprofile) of the link parameter in the shortcode with the actual linkedin profile URL.
Best regards,
IsmaelMarch 3, 2023 at 3:54 am #1399923In reply to: Modifying captions on masonry pictures
Hi Elena,
Thanks for giving us admin access.
Instead of centering the masonry, I have set the columns of your masonry to 5 (this can be changed when you edit Masonry > Styling > Columns > Column Count.
As for the masonry title, it’s fetching from the h3 settings, to fix it, I have added this CSS code:#top #wrap_all .all_colors .av-masonry-entry-title { color: white; font-size: 30px; line-height: 1; }Please review your site.
Best regards,
NikkoMarch 3, 2023 at 1:35 am #1399917Topic: Updates Changing Fonts and Colours
in forum Enfolddarrenwise
ParticipantHi Team,
I hope you are well.
Unfortunately, I have been unable to do an Enfold update for a while because it changes my headings’ font sizes and colours.
I’ve tried twice now and needed to return to a backup version before the update.
Any help would be greatly appreciated.
Warmest regards,
Darren
March 2, 2023 at 11:01 pm #1399904In reply to: Change CSS for submenu
Hi Illingco,
Please try to replace the code I gave with this one:
#top #wrap_all .socket_color .av-subnav-menu .av-menu-button-colored>a .avia-menu-text { color: #fff; font-size: 12px; background-color: #404040; border: 2px solid white; border-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; border-bottom-right-radius: 2px; border-bottom-left-radius: 2px; } #top .av-subnav-menu>li>a { background-color: transparent; margin: 0 6px; border: 0; color: white; } #top .av-subnav-menu>li>a:hover { opacity: 0.9; }Best regards,
NikkoMarch 2, 2023 at 7:55 pm #1399892In reply to: Add a LinkedIn button in front page footer
Hi Ismael
I have done as you said, but I still cannot get it to work.
The LInkedIn icon is still not added to the footer on my page.When I look at the code for the link to Facebook, it looks like this:
[av_font_icon icon='ue8f5' font='entypo-fontello' style='' caption='' link='manually,https://www.facebook.com/care4burn/' linktarget='_blank' size='40px' position='left' color='#333333' av_uid='' admin_preview_bg=''][/av_font_icon]I still don’t understand hos I can add a LInkedIn icon.
I am working in Appearance>Widgets/Customize. I want to add the LinkedIn icon with link to Care4Burns LinkedIn in the Footer Column 4.Please help. Thank you.
Kind regards Karianne
March 2, 2023 at 5:31 pm #1399859Topic: Blog title and blog heading too large
in forum Enfoldnnjr-pca
ParticipantI’m trying to change font type and size and vertical spacing between in the heading of a blog post. I know this has been answered in the forum in many vairations, but I haven’t been able to make any of the suggestions work.
When I try the example CSS it changes the blog post font style and size in full-screen mode but also affects the Enfold Top menu, Headline Rotator, etc. It also stops working completely when I decrease the screen size while looking at a post but doesn’t change the other elements that have been affected. As you know from answering these support posts over the years, the text size is too large and gives the appearance of overlap on mobile phones. I haven’t found any way to do this within the theme itself. I have many approaches using custom CSS Enfold Theme Options->General Styling->Quick CSS and the Advanced Tab->Development Custom CSS. I am not a software engineer or CSS coder.
This is what I am hoping the outcome to be
color: RED;
font-size: 20px;
line-height: 1.1em;
font-weight: 400;
text-transform: none;March 2, 2023 at 1:10 pm #1399820In reply to: Events Calendar header font
Hi Tom,
You had the following code Quick CSS field
h2.tribe-events-single-section-title { color: #919191; font-size: 20px; font-family: var(--tec-font-family-sans-serif); }CSS selector was weak so I changed it to the following one
#top h2.tribe-events-single-section-title { color: #919191; font-size: 20px; font-family: var(--tec-font-family-sans-serif); }Also, you had the “Hiding the email address and divider in the organiser’s page:” and it was not wrapped inside comment tags. That breaks your CSS. If you’d like to add comments to your CSS, please do so as following
/* Hiding the email address and divider in the organiser's page: */Please review your website.
Best regards,
YigitMarch 2, 2023 at 12:50 pm #1399813In reply to: Events Calendar header font
Hi Mike,
Thx a lot. It changed the font, but not the color. I was trying
h2.tribe-events-single-section-title {
color: #919191;
font-size: 20px;
font-family: var(–tec-font-family-sans-serif);
}but color and size had not been affected. What else I can try?
Also the map is not to be seen on mobiles.
Everything was working well until yesterday morning and looking ok, the font and the map as well.
Best regards,
Tom-
This reply was modified 2 years, 12 months ago by
tom_on_wheels.
-
This reply was modified 2 years, 12 months ago by
tom_on_wheels.
March 2, 2023 at 11:04 am #1399787Hi woogie07,
1. Yes, it’s possible, please try to add the following on Enfold > General Styling > Quick CSS:
#top #wrap_all .avia-fullwidth-slider .avia-slideshow-button { font-size: 18px; padding: 20px; }Just adjust the values as you see fit.
2. I could see a vertical line on the left of the subhead on the fullwidth easyslider, is this already done? I’m not really sure I understood the question.
Best regards,
NikkoMarch 2, 2023 at 9:19 am #1399765In reply to: Change CSS for submenu
Hi Illingco,
Please try to add this CSS code in Enfold > General Styling > Quick CSS: (just change the values as you see fit)
#top #wrap_all .socket_color .av-subnav-menu .av-menu-button-colored>a .avia-menu-text { color: white; font-size: 13px; background-color: blue; border: 2px solid black; }Best regards,
NikkoMarch 2, 2023 at 9:17 am #1399764Hi,
Is there any way to limit this edit to just the top blog element? Thank you.
As suggested above, you can apply a custom css class name (av-custom-featured-blog for example) to the top blog element (Advanced > Developer Settings > Custom CSS Class) and use it in the css rule above to specifically target the blog element.
#top.home #wrap_all .main_color .av-custom-featured-blog .post-entry h2.post-title { font-size:32px; }In the edited css above, we added the selector “.av-custom-featured-blog” to target the element with the class name “av-custom-featured-blog”.
Best regards,
IsmaelMarch 2, 2023 at 8:41 am #1399756In reply to: Add Social Media Icon for Rumble
Hi So Evolve,
I have checked for the rumble icon on fontello’s website unfortunately, I did not find any icon.
You will need to find it somewhere or you can try downloading it here: https://companieslogo.com/rumble/logo/ (I just found one here)
Then do the following Steps:
1. Please add this code in functions.php of your child theme or you can add it via a plugin called WPCode:// Register new icon as a theme icon function avia_add_custom_icon($icons) { $icons['rumble'] = array( 'font' =>'entypo-fontello', 'icon' => 'ue897'); return $icons; } add_filter('avf_default_icons','avia_add_custom_icon', 10, 1); // Add new icon as an option for social icons function avia_add_custom_social_icon($icons) { $icons['Rumble'] = 'rumble'; return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);2. Go to Enfold > Social Profiles, then add Rumble and the link to your Rumble Channel.
3. Go to Header > Extra Elements > Header Social Icons and make sure to set to any value except No social Icons (at this point check the frontend of your site and see if it works properly)
4. Go to Media > Add New, then upload the rumble icon, (once uploaded) click the Copy URL to clipboard button.
5. Go to Enfold > General Styling > Quick CSS and add this CSS code:
#top #header .social_bookmarks .av-social-link-rumble a { background: url(rumble_image_url) center center no-repeat; background-size: contain; } #top #header .social_bookmarks .av-social-link-rumble a:before { display: none; }Just replace rumble_image_url with the URL you copied from the clipboard.
Hope this helps.Best regards,
NikkoMarch 2, 2023 at 7:31 am #1399752In reply to: Change promo line old product bar
Hi mescalytequila,
Please try to add this CSS code as well:
#top #wrap_all .price del { font-size: 32px; text-decoration-color: red; text-decoration-thickness: 4px; }Best regards,
NikkoMarch 1, 2023 at 3:22 pm #1399683SophieA
ParticipantHi,
I tried to change my h1 and h2 font weights using the « Advanced Styling » options (my title font is Montserrat). And I don’t know why but it only changes the weights on my home page, not on the other pages. The weird thing is that if I try to change something else like the font size, it works and I can see it on all the different pages. So the problem seems to appear only with the font weight.
I have tried different things to fix it like clearing my cache, disable compression in the performance section, or using the Quick CSS directly but nothing worked.
Could you help me please ?
Thank you,
SophieMarch 1, 2023 at 9:07 am #1399623In reply to: Change promo line old product bar
Hey mescalytequila,
Thank you for the inquiry.
You can add this css code to adjust the font size of the price and the strike-through.
#top .price, #top .price span, #top del, #top ins { display: inline; text-decoration: none; font-size: 32px; line-height: 32px; font-weight: 600; }You should remove this css code to vertically align the strike-through with the price.
.price span { font-size: 32px!important; color: #89b82b!important; }After doing the modifications above, you may need to toggle or temporarily disable the Enfold > Performance > File Compression settings.
Best regards,
IsmaelMarch 1, 2023 at 8:56 am #1399619In reply to: Caption size when converted to mobile view
Hey es.design.ma,
Thank you for the inquiry.
You can actually set different font sizes for various screen sizes and devices in the slides’ Styling > Font Sizes panel. Look for the Font Size default – used for all screen sizes(no media query) settings in the panel, then click the little devices icon to adjust the font size for a specific device.
Best regards,
Ismael -
This reply was modified 2 years, 12 months ago by
-
AuthorSearch Results
-
Search Results
-
Hi Team,
I hope you are well.
Unfortunately, I have been unable to do an Enfold update for a while because it changes my headings’ font sizes and colours.
I’ve tried twice now and needed to return to a backup version before the update.
Any help would be greatly appreciated.
Warmest regards,
Darren
I’m trying to change font type and size and vertical spacing between in the heading of a blog post. I know this has been answered in the forum in many vairations, but I haven’t been able to make any of the suggestions work.
When I try the example CSS it changes the blog post font style and size in full-screen mode but also affects the Enfold Top menu, Headline Rotator, etc. It also stops working completely when I decrease the screen size while looking at a post but doesn’t change the other elements that have been affected. As you know from answering these support posts over the years, the text size is too large and gives the appearance of overlap on mobile phones. I haven’t found any way to do this within the theme itself. I have many approaches using custom CSS Enfold Theme Options->General Styling->Quick CSS and the Advanced Tab->Development Custom CSS. I am not a software engineer or CSS coder.
This is what I am hoping the outcome to be
color: RED;
font-size: 20px;
line-height: 1.1em;
font-weight: 400;
text-transform: none;Hi,
I tried to change my h1 and h2 font weights using the « Advanced Styling » options (my title font is Montserrat). And I don’t know why but it only changes the weights on my home page, not on the other pages. The weird thing is that if I try to change something else like the font size, it works and I can see it on all the different pages. So the problem seems to appear only with the font weight.
I have tried different things to fix it like clearing my cache, disable compression in the performance section, or using the Quick CSS directly but nothing worked.
Could you help me please ?
Thank you,
Sophie
