Viewing 30 results - 14,941 through 14,970 (of 244,635 total)
  • Author
    Search Results
  • #1413333

    In reply to: header mobil

    Hi Franz,

    Please try to add this CSS code in Enfold > General Styling > Quick CSS:

    @media only screen and (max-width:767px) {
      .responsive #top .logo {
        height: 48px !important;
      }
    
      .responsive #top #wrap_all .main_menu, 
      .responsive #top #header_main > .container .main_menu .av-main-nav > li > a, 
      .responsive #top #wrap_all .av-logo-container,
      .responsive #top #menu-item-shop.cart_dropdown, 
      .responsive #top #header_main #menu-item-shop .cart_dropdown_link {
        height: 48px;
        line-height: 48px;
      }
    
      .responsive .logo a {
        background-image: none !important;
      }
    
      .logo img, 
      .responsive .logo img {
        opacity: 1 !important;
      }
    }

    Best regards,
    Nikko

    #1413332

    Hi Lance,

    Please add this code in functions.php using a child theme or if you don’t have a child theme, you can use WPCode plugin to insert this php snippet:

    function enfold_customization_modify_thumb_size( $size ) {
      $size['entry_without_sidebar'] = array('width'=>845, 'height'=>321);
      return $size;
    }
    
    add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );

    The width and height values are default, so change it as you see fit.

    I need images that display at 1032px wide and are not constrained as to height.

    please change this part of the code:

    $size['entry_without_sidebar'] = array('width'=>845, 'height'=>321);

    to

    $size['entry_without_sidebar'] = array('width'=>1032);

    Then regenerate your images or simply re-upload the image.
    Hope this helps.

    Best regards,
    Nikko

    #1413330

    Hi Lance,

    I’m glad that Ismael could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    #1413328

    Hi Sean,

    Please try to add this CSS code in Enfold > General Styling > Quick CSS:

    #top .single_toggle {
        margin-bottom: 20px;
    }

    Hope it helps.

    Best regards,
    Nikko

    #1413327

    Hi Sean,

    Please try to add this CSS code in Enfold > General Styling > Quick CSS:

    #top .av_font_icon:hover, 
    #top .av_font_icon *:hover {
        text-decoration: none;
    }

    Hope it helps.

    Best regards,
    Nikko

    #1413316
    maxgorelkine
    Participant

    Hi, I need to display the header widget (added with your official method) inside the burger menu on screen width less than 990px.

    I found this post that makes it happen, thanks to @Guenni007 solution, but unfortunately some bugs appear:

    • When I click on a mega link in the main menu on desktop, the widget disappears
    • When manually reducing the screen size, clicking on the burger menu, then enlarging the browser size again, the desktop widget doesn’t appear without reloading the page

    I think it’s because the detaching and appending of the widget happens when clicking on a link.
    Wouldn’t it be better to make the switch depending on screen size and not a click ? So for instance if ($(window).width() <= 990){ then append the widget to burger menu, and if ($(window).width() > 990){ then append the widget to header.

    Unfortunately I’m not sure how to adapt the code to make it work… could you help ?
    Thanks in advance!

    • This topic was modified 2 years, 9 months ago by maxgorelkine.
    Jesse Mullinax
    Guest

    I could not figure out how to ask a support question which was a bit frustrating. We already own this theme but we are not happy with the main menu options. We have the Enfold theme Version: 5.6.3 https://infinitiworkforce.com/ is there a way to reduce the height of the nav menu in order to have the CTAs and the website logo on the same line? Similar to this but instead of the socials our CTAs https://kriesi.at/themes/enfold-construction/ I can give log in creds as well if needed. We currently have one more month of theme support so we hope that you can help us here and give us incentive to extend our support please. Please let me know if you need login info.

    Thanks, Jesse

    #1413313

    Hey John,
    Thank you for your question, if you are creating a post using the Advanced Layout Builder with the Text Element you will see the “Read More” button in the TinyMCE toolbar:
    Enfold_Support_2564.jpeg
    The “Read More” is used to break the length of your except from your content should you want to manually set the length of the text.
    This is primarily used for Classic Editor posts because WordPress will automatically get the beginning post text and create a excerpt from it.
    This is not always the case for Advanced Layout Builder posts, for example with using the Blog Element in the grid layout the ALB posts don’t show the excerpt automatically you need to use the excerpt field. But on category pages the excerpt will show and the “Read More” button will show on the frontend.
    I hope this helps explain.
    If you are creating ALB posts and are not seeing your excerpts try looking in the drop down at the top of your posts screen “Screen Options” and checking the Excerpts box, which will give you a text area below your post area to manually add your excerpt.
    If this doesn’t help, please explain further and link to your site so we can see how you are currently displaing your posts and blog page.

    Best regards,
    Mike

    #1413312

    Hey michelleornest,
    Thank you for the link to your site, I see that you are using Enfold Theme Options ▸ Header ▸ Extra Elements ▸ Header Social Icons ▸ Display in top bar at the right for this option try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function add_social_icons_mobile_menu(){
    ?>
    <script>
    (function($){
    	var int = '';
    	function a() {
    		var isMobile	 = $('.av-burger-menu-main').css('display'),
    			htmlString   = $('#header_meta .social_bookmarks:first').find('li a'),
    			mobileMenu   = $('.av-burger-overlay'),
    			socialString = [];
    
    			if(isMobile == 'none') return;
    			if($('.burger-social').length) clearInterval(int);
    
    			htmlString.each(function() {
    				var socialClass	= $(this).parent('li').attr('class'),
    						socialItems = $(this).wrap('<li class="'+ socialClass + ' av-active-burger-items burger-social"></div>').parent().unwrap();
    				socialString.push(socialItems);
    			});
    
    			$(socialString).each(function() {
    				$(this).appendTo('#av-burger-menu-ul');
    			});
    	}
    
    	$('#header').on('mousedown', '.av-main-nav-wrap', function() {
    		int = setInterval(function() {
    			a();
    		}, 500);
    	});
    
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_social_icons_mobile_menu');

    and this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #av-burger-menu-ul li.burger-social {
        float: left;
    }
    #av-burger-menu-ul li.burger-social a {
        padding: 10px !important;
        border-bottom: none !important;
    }
    #av-burger-menu-ul li.social_icon_1 {
     padding-left: 40px
    }

    Then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    #1413311

    Hey woogie07,
    You can use css to make the number bolder, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top span.avia-single-number {
    	font-weight: bolder;
    }

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

    Best regards,
    Mike

    #1413310
    Christine Becker
    Guest

    Hallo, wir nutzen Ihre Enfold Theme. Ein Verein möchte, dass wir ihn bei der Homepage unterstützen, da würde ich dann auch gerne Enfold einsetzen. Die Besonderheit: Der Verein möchte manche Inhalte nur für Mitglieder (kostenlos) oder auch gegen Bezahlung (paywall) anbieten. Können Sie ein Plugin empfehlen, welches gut mit Endfold korrespondiert? Ich denke dabei an so etwas wie Paid Memberships Pro. Vielen Dank für Ihre Pre-Sale-Unterstützung!

    #1413306
    Cloud Construct
    Participant

    Hi,

    We’re having difficulty getting a YouTube video to embed, both as a color section background video, and using the Video element in the Media tab.

    The video background doesn’t play, and the video element has a black thumbnail and opens the YouTube video in a new tab when clicked.

    The WP version is: 6.2.2
    The Enfold parent theme version is: 5.6.3

    Thank you for your time!
    Harry

    #1413303

    In reply to: GDPR compliance

    Hello,
    thank you very much for your response.
    Do you have a custom solution available to offer?

    We have many websites developed with Enfold.

    Thank you.

    Best regards,
    Stefania

    #1413295

    Hey Maggie,

    Could you try updating the theme to the latest version (5.6.3) to see if that helps please? https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update.

    Best regards,
    Rikard

    #1413291

    In reply to: Marker OpenstreetMap

    Hi,

    Thanks for the info.

    We are now able to view the map, but there are some script errors appearing in the browser console. Please try to update the theme from version 5.5 to 5.6.3. After the update, make sure to toggle or temporarily disable the Enfold > Performance > File Compression option to regenerate the leaflet script. Also, please note that that the latest version (5.6.4) of the theme will be released in the coming days. Let us know if the update resolves the issue for you.

    Best regards,
    Ismael

    #1413286

    Hey woogie07,

    Thank you for the inquiry.

    You can add this css code to adjust the style of the accordion element.

    .av-elegant-toggle .toggle_icon {
        left: 20px;
        right: auto;
    }
    
    .js_active .av-elegant-toggle .toggler, .avia-admin-preview-container .av-elegant-toggle .toggler {
        padding: 35px 35px 30px 55px;
        font-size: 17px;
    }
    

    Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings in order to ensure that the changes take effect.

    Best regards,
    Ismael

    #1413277

    Hey Lance,

    Thank you for the inquiry.

    You may be referring to the Enfold Combo Widget, which displays separate tabs that contain the most popular posts, recent posts, and recent comments. If the widget is not currently visible, you may need to add it again.

    Best regards,
    Ismael

    Hey CJGVD,

    Thank you for the inquiry.

    You can now customize the font size for various screen sizes in the Enfold > General Styling > Typography panel. If you enable the Default Content Font Size toggle for example, you will have access to different dropdown menus for adjusting the font size on desktop, medium, small, and very small screen sizes. Let us know if this help.

    Best regards,
    Ismael

    Hey CJGVD,

    Thank you for the inquiry.

    We adjusted the css code a bit. Please try it again and make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the modification.

    #top #wrap_all #header .av-burger-overlay #av-burger-menu-ul .current-menu-item > a {
        color: #ab343a;
    }
    

    Best regards,
    Ismael

    #1413267

    Topic: remove header boarder

    in forum Enfold
    nTECHgrate
    Participant

    Hello Enfold Team,

    I am trying to remove the border from my transparent header, but a thin black line persists whenever I start to scroll down the page. I have applied all of the following CSS, but unfortunately, not have done the trick for me.

    #header_main {
    border-bottom: none!important;
    }

    .av-main-nav > li > a {
    border: none!important;
    }

    #top .av_header_with_border.avia-menu.av_menu_icon_beside, #top .av_header_with_border #header_main, .av-main-nav > li > a {
    border: none!important;
    }

    #header .main_menu .avia-menu-fx {
    display: none !important;
    }

    Thanks in advance for your help.

    -James

    #1413264
    tiadrop
    Participant

    Hello

    I am having issues with updating the theme. It says No Updates available. You are running the latest version! (4.9.2.3) which I know is not the latest theme.

    Can you please assist me with updating the Enfold them. Credentials are listed below

    #1413263
    CaptOM89
    Participant

    Greetings,

    I have been using the plugin Simple Image Sizes in my site. In it, I had the size for “entry_with_sidebar size” set at maximum width 1032, maximum height 900. This gave the featured images in my Enfold blog posts a nice aspect ratio, roughly 1.91:1 for images uploaded at 1200 x 628px.

    Recently, I uninstalled Simple Image Sizes because it now seems unsupported and out of date.

    Without the Simple Image Sizes plugin, the featured images in my Enfold blog posts are now the same width, but significantly reduced in height, such the aspect ratio is significantly changed and the top and bottom of the image are truncated. See:

    https://centerforworldmusic.org/2016/11/mairtin-de-cogain-irish-storyteller/

    How can I get my 1.91:1 aspect ratio back? Is there some CSS code I could add? Basically, as I understand it, I need images that display at 1032px wide and are not constrained as to height.

    Thanks for your advice.

    Lance

    #1413261
    vew01
    Participant

    I am unable to effect any change in paragraph font sizes on the website’s homepage. It is far too small for mobile devices unless device is turned to landscape view.
    I’ve tried adding Quick CSS on Enfold, Theme Options, General Styling, Quick CSS with part or all of the below.
    (I am level zero as a web developer.)
    Nothing changes, no matter what I do.
    All I’d like is for the font size of paragraphs to be larger on the mobile version.
    I’ve tried both of these to no avail.

    @media only screen and (max-width: 790px) {
    .responsive #top #wrap_all .container { width: 70%; max-width: 70%; }}

    @media only screen and (max-width: 1200px) {
    .fallback_menu.av-main-nav-wrap { position: relative; right: -120px; }}
    .phone-info {
    font-size: 18px;
    }

    Thanks for any help you can offer.

    #1413259

    Topic: Enfold Forms

    in forum Enfold
    Advantage09
    Participant

    Working on a site trying to get it up to WCAG standards and I need to add a legend to the form and also make sure the form has the autocomplete attribute. How to do this?

    Regards
    Nina

    #1413254

    In reply to: Theme Licence

    Hi,

    Thanks for the update. You can set the default font size under Enfold->General Styling->Typography. If you need more advanced settings than the ones available there, then you can go to Enfold->Advanced Styling.

    Best regards,
    Rikard

    #1413252

    In reply to: Fehler beim Token

    Hi Matthias,

    Please refer to this: https://kriesi.at/documentation/enfold/theme-registration/

    Best regards,
    Rikard

    #1413250

    In reply to: Menu stuck on left

    Hi,
    Thanks for the login, I see that you have css in your child theme stylesheet for Add a widget area next to the logo, but you don’t have a custom widget to place in your header.
    This is the css that is cauing your header issue, when I remove it and “purge” your caching plugin the header shows correctly.
    I added the css back in case you want to save it localy to your computer for future use.
    Please try removing it, then disable Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression, then “purge” your caching plugin and then clear your browser cache and check again.
    Afterwards you can enable Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression again.
    I recommend disabling this option and your caching plugin while you create your site as the cache can make it hard to see your css changes while you are building your site, after you are done enabling caching would make the most sense.

    Best regards,
    Mike

    #1413249
    CaptOM89
    Participant

    Hello,

    For about a year now, I’ve used a Top Posts widget in the side bar of our blog posts. Just today, I noticed that it has vanished. It is no longer available in Appearance > Widgets, and it is gone from the sidebar of the actual posts. I seem to remember that this was an Enfold widget, but I’m not sure, since it’s gone.

    I’m stumped. I’d appreciate help in getting it back.

    Thanks! Lance

    #1413244

    Hi,
    Thanks for the login details, but please also include the URL to your site.
    As I understand, from the backend you can edit the parallax demo frontpage, but if you try to veiw the frontend you see the “hello world” post?
    Please check that the parallax demo frontpage is selected at Enfold Theme Options ▸ Theme Options ▸ Frontpage Settings and nothing is selected at WordPress ▸ Settings ▸ Reading ▸ Your homepage displays.

    Best regards,
    Mike

    FokeOne
    Participant

    I would like to use the fonts which I uploaded into enfold for the layer slider as well. The google fonts are not convenient with the GDPR.
    Is there already a workaround for that?

    Thanks in advance

Viewing 30 results - 14,941 through 14,970 (of 244,635 total)