-
AuthorSearch Results
-
June 12, 2024 at 4:45 pm #1449086
In reply to: Adjust style of mega menu for mobile
Hi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#av-burger-menu-ul ul.sub-menu ul.sub-menu .avia-menu-text { font-size: 20px; }After applying the css, please clear your browser cache and check.Feel free to adjust the size to suit.
Best regards,
MikeJune 12, 2024 at 3:20 pm #1449063In reply to: Adjust style of mega menu for mobile
this does not change the font size of the mobile link text under the mega menu
June 12, 2024 at 12:22 pm #1449022In reply to: Adjust style of mega menu for mobile
Hi,
Please try this CSS as well:
#av-burger-menu-ul ul.sub-menu ul.sub-menu a { font-size: 16px; }Best regards,
RikardJune 12, 2024 at 11:15 am #1448993In reply to: Adjust style of mega menu for mobile
Thanks, the distance improved!
Any idea also how to increase the font size for the sub– and the sub, sub links? in the mega menu?
June 12, 2024 at 7:22 am #1448962In reply to: Accessibility
Hey Meetx,
Thank you for the inquiry.
1-2) Please add this css code to adjust color of the icon on hover and make it bigger on mobile view.
.html_bottom_nav_header #top .av_seperator_big_border .av-main-nav>#menu-item-search:hover a { color: red; } @media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .responsive #top #wrap_all .menu-item-search-dropdown>a { font-size: 32px; margin-right: 20px; } }Best regards,
IsmaelJune 11, 2024 at 2:42 pm #1448899In reply to: Enfold: Custom Font Manger upload error
First: Do you really need all of them. Fontloading is something that could reduce performance of your website.
Next: My advice is not to use the variable Font that is inside the TypeType CommonsPro folder too – it has all the font-faces that are inside that folder and a file size of 1.8MB
if you can live with light, regualar and bold – i would only take the non italic fonts and upload them to transfonter

the convert as shown above and download it – rename the zip file to f.e.: Commons-Pro
Edit
This is a strange professional font. Normally it always works right away to generate the zip file as a font family. In this case – I first had to open the files in FontLab and have the names (postscript names) regenerated there by Build Names. I then saved these as otf families and uploaded them to Tranfonter.
Now you can see it is ok:

test yourself with: https://webers-testseite.de/commons-pro.zip
Please note, however, that your licensing model must include web font use.
June 11, 2024 at 5:05 am #1448862In reply to: I need my full menu on mobile
Hey joshuati,
Thank you for the inquiry.
This is possible, but there won’t be enough space for the menu items. We may need to decrease the size of the logo or the font size of the menu items. If that is acceptable, you can start with this css code:
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .responsive #top .av-main-nav .menu-item-avia-special { display: none; } .responsive #top .av-main-nav .menu-item { display: inline; } .responsive .logo img, .responsive .logo svg { margin: 0; max-height: 40px !important; margin-left: -20px; } }Best regards,
IsmaelJune 7, 2024 at 5:20 am #1448588In reply to: Mobile View: Top bar on menu needs to be transparent
Hi,
Thank you for the update.
1. The Cart and Search buttons a little larger
You can add this css code to make the cart and search icons larger:
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ #menu-item-shop .cart_dropdown_link { font-size: 24px; } #top #menu-item-search a:before { font-size: 30px !important; } }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,
IsmaelJune 5, 2024 at 8:43 am #1448446In reply to: Image Caption / Overlay as Button
Hi,
Thank you for the update.
Try to replace the selector “.home” with “.page-id-362”.
.page-id-362 .av-image-caption-overlay-center p { border-radius: 3px; padding: 10px; font-size: 12px; text-decoration: none; display: inline-block; border-bottom-style: solid; border-bottom-width: 1px; margin: 3px 0; line-height: 1.2em; position: relative; font-weight: normal; text-align: center; max-width: 100%; color: var(--enfold-main-color-button-font); background: var(--enfold-main-color-button-border); transition: all 0.4s ease-in-out; box-shadow: none; border: 0; padding: 25px 50px 23px; font-size: 28px; min-width: 200px; }Please make sure to purge the cache before checking the page.
Best regards,
IsmaelJune 4, 2024 at 6:22 pm #1448051In reply to: Image Caption / Overlay as Button
Hi,
Thanks for the update. If you only want the CSS to apply to the home page, then you can use this instead:
.home .av-image-caption-overlay-center p { border-radius: 3px; padding: 10px; font-size: 12px; text-decoration: none; display: inline-block; border-bottom-style: solid; border-bottom-width: 1px; margin: 3px 0; line-height: 1.2em; position: relative; font-weight: normal; text-align: center; max-width: 100%; color: var(--enfold-main-color-button-font); background: var(--enfold-main-color-button-border); transition: all 0.4s ease-in-out; box-shadow: none; border: 0; padding: 25px 50px 23px; font-size: 28px; min-width: 200px; }Best regards,
RikardJune 4, 2024 at 11:35 am #1447792In reply to: Image Caption / Overlay as Button
Hey Monika,
Thank you for the inquiry.
You can use this css code to adjust the style of the caption overlay.
.av-image-caption-overlay-center p { border-radius: 3px; padding: 10px; font-size: 12px; text-decoration: none; display: inline-block; border-bottom-style: solid; border-bottom-width: 1px; margin: 3px 0; line-height: 1.2em; position: relative; font-weight: normal; text-align: center; max-width: 100%; color: var(--enfold-main-color-button-font); background: var(--enfold-main-color-button-border); transition: all 0.4s ease-in-out; box-shadow: none; border: 0; padding: 25px 50px 23px; font-size: 28px; min-width: 200px; }Best regards,
IsmaelJune 4, 2024 at 9:51 am #1447728In reply to: Increase Size of Font in Specific Footer Column
Hey craig374,
Please try the following in Quick CSS under Enfold->General Styling:
#text-7 span strong { font-size: 14px; text-transform: uppercase; }Best regards,
RikardJune 4, 2024 at 6:59 am #1447668Topic: Increase Size of Font in Specific Footer Column
in forum Enfoldcraig374
ParticipantI have a four column footer. In the third column I have a text widget, and at the bottom of that text widget, I have a bold and underlined piece of text that reads, “Have a Question?”
Is there a way to increase the font size of that specific line of text? I would like to make it the same size as the column title. Also, I would like it to be the same font as the column title as well.
Link to page with footer below.
June 3, 2024 at 10:14 pm #1447601Topic: Search Bar Colors
in forum Enfoldannameis
ParticipantHi – I was wondering if you could help me with CSS to change the text color in the search bar. It is currently white on a white background. Link below.
CSS being used in header area:
.header_color .header_bg, .header_color .main_menu ul ul, .header_color .main_menu .menu ul li a, .header_color .pointer_arrow_wrap .pointer_arrow, .header_color .avia_mega_div, .header_color .av-subnav-menu > li ul, .header_color .av-subnav-menu a {
background-color: transparent;
}#top #header #header_main .mega_menu_title a {
color: #ffffff;
}
#top #header #header_main .mega_menu_title a:hover {
color: #d6001d;
}
.av-masonry-entry .av-masonry-entry-title {
font-size: 32px !important; text-transform: uppercase;
}#top #header #header_main .mega_menu_title a:hover {
text-decoration: none;
}@media only screen and (max-width: 1024px) {
nav.main_menu {
display: block !important;
}
#avia-menu .menu-item {
display: none;
}
.av-burger-menu-main.menu-item-avia-special {
display: block;
}
}
.footer_color { background-size: cover; }.toggler.activeTitle {
border-bottom: 0;
}.taglist a:hover, #top .taglist .activeFilter {
color: red;
}.taglist a:hover, #top .taglist {
color: white;
}.av-elegant-toggle .taglist a {
background: #fff;
border-radius: 4px;
padding: 5px 15px;
margin: 5px;
color: #333;
text-decoration: none;
}
.av-elegant-toggle .taglist { margin-bottom: 20px; }.av-elegant-toggle .tag-seperator { display: none; }
@media only screen and (max-width: 767px) {
.av-elegant-toggle .taglist a {
line-height: 2.0em;
font-size: 0.9em;
padding: 3px 15px;
display: inline-block;
}
}June 2, 2024 at 2:46 pm #1447450In reply to: Blog: html area block in single news
Hi,
Ok, as I examine your page I see that the wrap_all & main divs are closed and your injected color section is outsite the page:

Then I recalled that injecting any full width element, like color sections, causes the page to auto close like this, so the way around this is to inject the HTML instead, so I tested this on my site linked below as a proof of concept and this is the code that I used:add_action('ava_after_main_title', 'ava_after_main_title_mod'); function ava_after_main_title_mod() { $post_id = get_the_ID(); if(get_post_type( $post_id ) == "post" || is_archive() || is_category()) { echo '<div id="av_section_1" aria-label="header-blog" style="background-color:#e7e6e0;" class="avia-section av-gurxi-f7ad7ba9aa66e762665269785c869839 main_color avia-section-no-padding avia-no-border-styling avia-builder-el-0 avia-builder-el-no-sibling block-fit-size avia-bg-style-scroll container_wrap fullsize"><div class="container av-section-cont-open"><main role="main" itemprop="mainContentOfPage" class="template-page content av-content-full alpha units"><div class="post-entry post-entry-type-page post-entry-3814"><div class="entry-content-wrapper clearfix"><div class="flex_column_table av-lwc8c3ub-7fae82ac0e7450fe73ac250f770e4e79 sc-av_one_half av-equal-height-column-flextable"><div style="padding: 20px 0 20px 0;" class="flex_column av-lwc8c3ub-7fae82ac0e7450fe73ac250f770e4e79 av_one_half avia-builder-el-1 el_before_av_one_half avia-builder-el-first first no_margin flex_column_table_cell av-equal-height-column av-align-bottom "><div class="av-special-heading av-tkaly-59af4c81dd5bd8035cb05863635061b6 av-special-heading-h1 custom-color-heading blockquote modern-quote avia-builder-el-2 el_before_av_textblock avia-builder-el-first "><div style="font-size: 18px;color: #a07860;" class="av_custom_color av-subheading av-subheading_above"><p>Veranstaltungen und Lesungen</p></div><h1 style="color:#1f4339;font-size:45px;font-family: "librebaskerville", Helvetica, Arial, sans-serif;text-transform: none;" class="av-special-heading-tag" itemprop="headline">Veranstaltungen</h1><div class="special-heading-border"><div class="special-heading-inner-border"></div></div></div><section class="av_textblock_section av-3a7ov5-3365d9d47359d52499c6170f6e5d6913 " itemscope="itemscope" ><div class="avia_textblock" itemprop="text"><p style="color: #666666;font-size: 17px;">Wir laden Sie ein, an unseren gemeinsamen Veranstaltungen, Reisen und Lesungen an besonderen Orten, teilzunehmen. Weiteres erfahren Sie in der jeweiligen Veranstaltungsbeschreibung.</p></div></section></div><div class="flex_column av-fy05a-677df80f19dcd41d19a6c602b9b923d5 av_one_half avia-builder-el-4 el_after_av_one_half avia-builder-el-last buch-monat no_margin flex_column_table_cell av-equal-height-column av-align-bottom "><div class="avia-image-container av-9gv81-4c6171ac5adc202d5cf1671f776d7959 av-styling- avia-align-right avia-builder-el-5 avia-builder-el-no-sibling " itemprop="image" itemscope="itemscope" ><div class="avia-image-container-inner"><div class="avia-image-overlay-wrap"><img decoding="async" fetchpriority="high" class="wp-image- avia-img-lazy-loading-not- avia_image " src="/wp-content/uploads/2024/05/area-book-ueber-uns.png" alt="" title="" itemprop="thumbnailUrl"></div></div></div></div></div></div></div></main></div></div>'; } }Note that I didn’t understand why you had $thumbnail = get_the_post_thumbnail_url ( $post_id ); since I saw no call for $thumbnail so it’s not in my code, feel free to adjust after to test my code. I also had to add so style inline so my test would look like your page, it should not cause a issue for you.
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.Best regards,
MikeJune 1, 2024 at 10:01 pm #1447383In reply to: Where is Portfolio Masonry Special Grid?
Hi,
Enable the Avia Layout Builder Debugger and add the code to the debugger and save:[av_section min_height='' min_height_px='500px' padding='huge' shadow='no-shadow' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' id='' color='main_color' custom_bg='' src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2017/02/business-office-work-blurred.jpg' attachment='885' attachment_size='full' attach='scroll' position='top center' repeat='stretch' video='' video_ratio='16:9' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.6' overlay_color='#000000' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0' av_uid='av-35gtt'] [av_heading heading='Masonry Portfolio Example:<br/>4 Column Masonry Grid' tag='h1' style='blockquote modern-quote modern-centered' size='40' subheading_active='' subheading_size='15' padding='0' color='custom-color-heading' custom_font='#ffffff' admin_preview_bg='rgb(34, 34, 34)' av_uid='av-qj14h'][/av_heading] [av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#ffffff' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='rgb(34, 34, 34)' av_uid='av-mx0kh'] [av_textblock size='' font_color='custom' color='#dddddd' admin_preview_bg='rgb(34, 34, 34)' av_uid='av-5ee9'] <p style="text-align: center;">Hey there! We are Enfold and we make really beautiful and amazing stuff. This can be used to describe what you do, how you do it, & who you do it for.</p> [/av_textblock] [/av_section] [av_masonry_entries link='portfolio_entries' 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='' sort='yes-tax' query_orderby='date' query_order='DESC' caption_elements='title' caption_styling='overlay' caption_display='on-hover' img_copyright='' size='fixed manually' orientation='' image_size='masonry' gap='large' columns='4' av-desktop-columns='' av-medium-columns='' av-small-columns='' av-mini-columns='' items='9' paginate='load_more' color='' 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' alb_description='' id='' custom_class='' template_class='' av_uid='av-83rt5' sc_version='1.0']once the elements show after the page reloads open the masonry element and select the Portfolio Entries that you want to show.
Best regards,
MikeJune 1, 2024 at 5:51 pm #1447322In reply to: Mailchimp-Popup
Hi,
Thank you for your patience, in your shortcode it looks like you manually added class=’open-popup-link’, but the correct way to add a class in the shortcode is custom_class=’open-popup-link’ but this adds the class to the button and not the link in the button.
So we will follow these steps.
So this is what you add to your code block:[av_button label='Jealousy-Letter abonnieren' icon_select='yes-right-icon' icon='ue875' font='entypo-fontello' icon_hover='aviaTBaviaTBicon_hover' link='manually,#test-popup' custom_class='pu-link' link_target='' size='x-large' position='center' label_display='' title_attr='' 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-highlight' 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='solid' border_width='2' border_width_sync='true' border_color='#000000' border_radius='10' 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='' template_class='' element_template='' one_element_template='' av_uid='av-1x42t1' sc_version='1.0' admin_preview_bg=''] <div id="test-popup" class="white-popup mfp-hide">[av_mailchimp list='eifersuchtscoach' double_opt_in='true' on_send='' sent='Thank you for subscribing to our newsletter!' link='' color='' hide_labels='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' alb_description='' id='' custom_class='' template_class='' av_uid='av-8l32o' sc_version='1.0'][/av_mailchimp]</div>and this is your new popup code:
function popup_inline() { ?> <script type="text/javascript"> jQuery(window).load(function(){ jQuery('.pu-link a').addClass('open-popup-link'); jQuery('.open-popup-link').magnificPopup({ type:'inline', midClick: true // Allow opening popup on middle mouse click. Always set it to true if you don't provide alternative source in href. }); }); </script> <?php } add_action('wp_head', 'popup_inline');Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
This should now work for you.Best regards,
MikeJune 1, 2024 at 2:47 pm #1447282Topic: Font size title and subtitle full with slider on mobile
in forum Enfoldznello
ParticipantHello all together,
I would like to know how to change the size of the title, subtile and button of a full with slider on start page for the mobile view.
On mobile view they are too large..
Access data you’ll find in private content.thanks in advance
znelloMay 31, 2024 at 8:17 am #1447157In reply to: Mailchimp-Popup
This is my code in a text block. I must be doing something wrong with the link. It doesn’t work
[av_button label='Jealousy-Letter abonnieren' icon_select='yes-right-icon' icon='ue875' font='entypo-fontello' icon_hover='aviaTBaviaTBicon_hover' link='manually,#test-popup' class='open-popup-link' link_target='' size='x-large' position='center' label_display='' title_attr='' 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-highlight' 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='solid' border_width='2' border_width_sync='true' border_color='#000000' border_radius='10' 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='' element_template='' one_element_template='' av_uid='' sc_version='1.0' admin_preview_bg=''] <div id="test-popup" class="white-popup mfp-hide">[av_mailchimp list='eifersuchtscoach' double_opt_in='true' on_send='' sent='Thank you for subscribing to our newsletter!' link='' color='' hide_labels='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' alb_description='' id='' custom_class='' template_class='' av_uid='av-8l32o' sc_version='1.0'][/av_mailchimp]</div>May 31, 2024 at 3:45 am #1447126In reply to: testimonials arrows/ curcle styling
Hey joandjaxx,
Thank you for the inquiry.
You can add this css code to adjust the thickness of the arrow icon:
#top .avia-slider-testimonials.av-slideshow-ui .avia-slideshow-arrows a:before { padding-top: 0; font-weight: 600; font-size: 18px; }Best regards,
IsmaelMay 30, 2024 at 5:17 am #1447006In reply to: VARIOUS FONTS
Hey Lewcfir66,
Thank you for the inquiry.
You can set the heading and body font in the Enfold > General Styling > Fonts tab. You can also adjust the style of a specific element in the Enfold > Advanced Styling panel. To further adjust the font size of the headings on different screen sizes, go to the Enfold > General Styling > Typography tab.
Best regards,
IsmaelMay 30, 2024 at 5:05 am #1447004In reply to: change color and size of the text in table
Hi,
Thank you for the update.
And the size of the font plaese?
To adjust the font size, please adjust the css code a bit:
.avia-table tr.avia-heading-row { color: white; font-size: 18px; }Best regards,
IsmaelMay 29, 2024 at 9:54 pm #1446990Topic: Testimonials slider icons issue
in forum Enfoldjoandjaxx
ParticipantHi, The arrows on my testimonial slidier are not looking correct. I have added some custom css for the iconbox icons and maybe that is why they are conflicting with the testimonials area…
Here is the icon code
/* Icon Size */
.iconbox_icon[data-av_icon]:before {
font-size: 50px!important;
}
.iconbox_icon {
margin-right:20px!important;
}.home #av_section_6 .container {
max-width: 100%;
padding: 0;
}.iconbox_top .iconbox_icon {
font-size: 60px!important;
text-align: center;
height: 60px;
width: 60px;
line-height: 56px;
top: -34px;
margin-left: -45px;
}May 29, 2024 at 7:00 pm #1446978In reply to: change color and size of the text in table
Thank you, this works.
And the size of the font plaese?
May 29, 2024 at 5:25 am #1446912Hey craig374,
Thank you for the inquiry.
Have you tried adjusting the Enfold > Main Menu > Menu Items For Mobile settings to the second option (Activate for Smartphones and Tablets)?
If you want to adjust the font size and space between the menu items on tablet view, add this css code:
@media only screen and (max-width: 1024px) { /* Add your Mobile Styles here */ #top #header .av-main-nav>li>a { font-size: 12px; padding: 0 4px; } }Best regards,
IsmaelMay 28, 2024 at 9:01 pm #1446874In reply to: Text Bocks: cannot see text in Admin to edit.
Following upon this. Yes, I am currently at 5.7.1. WordPress: 6.5.3, and PHP: 8.2.19
`
### wp-core ###version: 6.5.3
site_language: en_US
user_language: en_US
timezone: America/Chicago
permalink: /%postname%/
https_status: true
multisite: false
user_registration: 0
blog_public: 1
default_comment_status: open
environment_type: production
user_count: 3
dotorg_communication: true### wp-paths-sizes ###
wordpress_path: /srv/users/preucil/apps/preucil/public
wordpress_size: 54.88 MB (57541435 bytes)
uploads_path: /srv/users/preucil/apps/preucil/public/wp-content/uploads
uploads_size: 103.51 MB (108533120 bytes)
themes_path: /srv/users/preucil/apps/preucil/public/wp-content/themes
themes_size: 72.76 MB (76294269 bytes)
plugins_path: /srv/users/preucil/apps/preucil/public/wp-content/plugins
plugins_size: 103.19 MB (108205684 bytes)
database_size: 38.44 MB (40304640 bytes)
total_size: 372.77 MB (390879148 bytes)### wp-active-theme ###
name: Enfold Child (enfold-child)
version: 1.0
author: Kriesi
author_website: http://kriesi.at
parent_theme: Enfold (enfold)
theme_features: core-block-patterns, avia_exclude_bbPress, avia_exclude_menu_exchange, avia_exclude_pojo_accessibility, avia_exclude_wp_accessibility, avia_exclude_relevanssi, avia_exclude_WooCommerce, avia_exclude_wpml, avia_exclude_instagram_feed, avia_exclude_leaflet_map, avia_mega_menu, avia_improved_backend_style, avia_option_pages_toggles, avia_sidebar_manager, automatic-feed-links, nav_menus, menus, widgets, post-formats, avia_post_meta_compat, force-post-thumbnails-in-widget, post-thumbnails, widgets-block-editor, block-templates, title-tag, editor-styles, editor-style, customize-selective-refresh-widgets, responsive-embeds, editor-color-palette, editor-font-sizes, avia_no_session_support
theme_path: /srv/users/preucil/apps/preucil/public/wp-content/themes/enfold-child
auto_update: Disabled### wp-parent-theme ###
name: Enfold (enfold)
version: 5.7.1
author: Kriesi
author_website: https://kriesi.at
theme_path: /srv/users/preucil/apps/preucil/public/wp-content/themes/enfold
auto_update: Disabled-
This reply was modified 1 year, 9 months ago by
billbasler.
May 28, 2024 at 5:48 am #1446788In reply to: Font- and button-size of post-slider, remove date
Hi,
Thank you for the update.
You can include this css code to adjust the style of the read more link:
.html_elegant-blog .avia-content-slider .read-more-link { font-size: 12px; padding: 4px; } .html_elegant-blog .more-link { margin: 30px auto 20px auto; clear: both; width: 180px; border-style: solid; border-width: 1px; padding: 5px 0; border-radius: 2px; }Best regards,
IsmaelMay 28, 2024 at 2:27 am #1446773Topic: Code Block Content – coloured background behind text
in forum Enfoldxfacta
ParticipantHi there
I have created a code block to be able to add a colored background behind the text. however I now want to add the same colored background behind the text “Dowsers Society of NSW Inc.” as well – however I have used a special heading element and changed the font size of the H1 heading to be larger on desktop and a different size on mobile. How can I create the same sizing but with the colored background like the ”
Looking for answers?
Learn to dowse” text?<div style = “padding: 20px; background: rgba(0,0,0,0.3);”>
<section class=”av_textblock_section av-lvg5hiz5-387748b8bb20df7039517ac6d2cf3547 “>
<div class=”avia_textblock av_inherit_color”>
<h2 style=”text-align: center;”><span style=”color: #ffffff;”>Looking for answers?</span><br>
<span style=”color: #ffffff;”>Learn to dowse</span></h2>
</div>
</section>May 27, 2024 at 8:08 pm #1446749In reply to: Font- and button-size of post-slider, remove date
Hey northorie,
Please try the following in Quick CSS under Enfold->General Styling:
.html_elegant-blog .avia-content-slider .slide-meta { display: none; } .html_elegant-blog .avia-content-slider .read-more-link { font-size: 16px; } .html_elegant-blog .avia-content-slider .slide-entry-title { font-size: 18px !important; }Best regards,
RikardMay 27, 2024 at 1:55 pm #1446716Topic: Font- and button-size of post-slider, remove date
in forum Enfoldnorthorie
ParticipantHi,
I would like to decrease the font-size and the button-size of the posts in the post-slider. How can I achieve this?
I would also like to remove the date from the post-slider. How?Example-Page on private content
Best regards
-
This reply was modified 1 year, 9 months ago by
-
AuthorSearch Results
-
Search Results
-
Topic: Search Bar Colors
Hello all together,
I would like to know how to change the size of the title, subtile and button of a full with slider on start page for the mobile view.
On mobile view they are too large..
Access data you’ll find in private content.thanks in advance
znelloHi, The arrows on my testimonial slidier are not looking correct. I have added some custom css for the iconbox icons and maybe that is why they are conflicting with the testimonials area…
Here is the icon code
/* Icon Size */
.iconbox_icon[data-av_icon]:before {
font-size: 50px!important;
}
.iconbox_icon {
margin-right:20px!important;
}.home #av_section_6 .container {
max-width: 100%;
padding: 0;
}.iconbox_top .iconbox_icon {
font-size: 60px!important;
text-align: center;
height: 60px;
width: 60px;
line-height: 56px;
top: -34px;
margin-left: -45px;
}Hi there
I have created a code block to be able to add a colored background behind the text. however I now want to add the same colored background behind the text “Dowsers Society of NSW Inc.” as well – however I have used a special heading element and changed the font size of the H1 heading to be larger on desktop and a different size on mobile. How can I create the same sizing but with the colored background like the ”
Looking for answers?
Learn to dowse” text?<div style = “padding: 20px; background: rgba(0,0,0,0.3);”>
<section class=”av_textblock_section av-lvg5hiz5-387748b8bb20df7039517ac6d2cf3547 “>
<div class=”avia_textblock av_inherit_color”>
<h2 style=”text-align: center;”><span style=”color: #ffffff;”>Looking for answers?</span><br>
<span style=”color: #ffffff;”>Learn to dowse</span></h2>
</div>
</section>Hi,
I would like to decrease the font-size and the button-size of the posts in the post-slider. How can I achieve this?
I would also like to remove the date from the post-slider. How?Example-Page on private content
Best regards
